I'm building several popups in CVI, which are used to replace build-in popups. I will call my custom popups in my CVI application. My difficulty, for example below, is I can not make execute following codes until my popup user interface is closed, That is to say, during showing my popup, the following code will be executed, AND I don't want this to happen.
MyPopup();
for (i=0; i<100; i++)
{
SetCtrlVal(panelHandle,PANEL_TESTPERCENT,i);
Delay(0.1);
}
Thanks!
Jacky