I'm stumped at the moment on an issue with a FOR loop. (using JMP16)
// open a window
mywindow = New Window(" xyz ", .....etc.);
// create journal
myjrn = mywindow << journal window;
For( i = 1, i <= 100, i++,
// do a lot of lines of lines requiring about 5' run time.
// periodically journal objects.
Close All( data tables, no save )
); // end to for loop
// SAVE the journal:
myjrn << save journal( "my.jrn" );
The loop stops after an iteration.
(I can restart the loop after the for (i=1, i<=100, i++, stops and doesn't proceed to i=2.
for (i=2,i<=100, i++, stops and doesn't proceed to i=3.
for (i=3,i<=100, i++, stops and doesn't process to i=4.
Welcoming thoughts on what is causing this? resolution?
Thanks,
John