HI rooters
I’ve created a loop that prints images several times but I’d like that those images goes directly to a folder during the running without modifying my output in the makefile
I have this.
 for (int i = 1; i <= 112; ++i)
    {
      name+=i;
      name.Append(".jpg");
      Dibujar(h2,"","","","COLZ", i); //BOX, COL2Z, CONT0, CONT4
      c2->Print(name);
      name.Clear();
    }     
and I’d like something like this
 for (int i = 1; i <= 112; ++i)
    {
      name+=i;
      name.Append(".jpg");
      Dibujar(h2,"","","","COLZ", i); //BOX, COL2Z, CONT0, CONT4
      c2->Print(/FolderName/name);
      name.Clear();
    }     
Any idea?
Thanks in advance