Progress Bar showed how to make a progress bar. @abmayfield question in "not responding" vs. "still thinking" prompted me to revisit this. Here's another take, including a cancel button.
not canceled
Cancel button pressed.
progressBarWidth = 500;
progressUpdatesSeconds = 1 / 4;
cancel = 0;
New Window( "Progressbar demo",
V List Box(
cats = Text Box( "" ),
t = Text Box( "", <<setwrap( 500 ) ),
H List Box(
left = Spacer Box( size( 0, 10 ), color( "light green" ) ),
right = Spacer Box( size( progressBarWidth, 10 ), color( "dark green" ) ),
<<padding( 5, 5, 5, 5 ),
<<backgroundcolor( "dark gray" )
),
cancelButton = Button Box( "Cancel", cancel = 1 )
)
);
Wait( 0 );
startMicroSeconds = HP Time();
workCalls = 0;
recentUpdateMicroSeconds = HP Time();
runSeconds = (recentUpdateMicroSeconds - startMicroSeconds) / 1e6;
limitSeconds = 10;
updateProgress = Function( {fractionComplete},
leftsize = Round( progressBarWidth * fractionComplete );
rightsize = progressBarWidth - leftsize;
left << width( leftsize );
right << width( rightsize );
t << settext( Eval Insert( "^workCalls^ iterations in ^char(runSeconds,6,3)^ seconds -> ^workCalls/runSeconds^ ips" ) );
t << updatewindow;
);
totalCats = 0;
dowork = Function( {},
x = "";
For( i = 1, i <= 1000, i += 1, x = x || "." );
totalCats += 1000;
cats << settext( Eval Insert( "total concatenations=^totalCats^" ) );
);
While( runSeconds < limitSeconds & !cancel,
dowork();
workCalls += 1;
nowMicroSeconds = HP Time();
If( (nowMicroSeconds - recentUpdateMicroSeconds) / 1e6 > progressUpdatesSeconds,
updateProgress( runSeconds / limitSeconds );
recentUpdateMicroSeconds = nowMicroSeconds;
Wait( 0 );
);
runSeconds = (nowMicroSeconds - startMicroSeconds) / 1e6;
);
If( cancel,
Beep();
left << color( "dark red" );
right << color( "red" );
,
updateProgress( 1.0 );
);
cancelButton << setbuttonname( "Close" );
cancelButton << setscript( (cancelButton << closewindow) );
Testing between JMP 15 and 16, I noticed 16 is a lot faster on this string concatenation work load! Nice work!
Edit: if JMP is running a platform that does not have its own cancelable progress bar, and it runs for a long time, this is not going to help. Tech Support would be a good place to request the platform support for a progress bar. Without it, there is no way (short of forcibly closing JMP) to stop it until it is done.