Hi,
When you see “Not Responding” in the title bar, it means that Origin program is freezing for the moment as well as the status bar.
Perhaps you should show the progress in progress bar instead of status bar. This is a simple example of progress bar:
break.open(message); //Open a progress dialog box
break.min = 1; //Minimum value of the progress bar
break.max = 200; //Maximum value of the progress bar
loop(ii,1,200)
{
break.setMsg("Step of $(ii)/200",1); //Set message displayed in the progress dialog box
break.set(ii); //Set the current value for the progress dialog box
col(A) = data(1,1000000);
}
break.close();
Also, you can find more about Break here:
http://www.originlab.com/doc/LabTalk/ref/Break-obj
Hope it helps.
Regards,
Yuki
OriginLab