02-04-2015 11:53 AM
Hello,
I have a simple pop up dialog to have the user confirm that the program found the correct number of power supplies. The power supply array display and two buttons are on one tab, and a couple of hidden controls are on another. I have it set to pop-up as a dialog when called, and it processes the first couple of steps of loading the array, getting to the while loop and event handler (where the timeout fires, which I should probably remove) and then quits responding. LabVIEW doesn't even display the button animation when I try to click on either of the two displayed buttons. Can someone tell me what I'm doing wrong?
Thanks,
Simon
Solved! Go to Solution.
02-04-2015 12:25 PM
You can remove the FOR loop and timeout event. They are not needed. Your timeout never fires because you did not wire a timeout (default is -1, i.e. infinite).
Sorry, I don't see any tabs ("Can't press buttons on a tab in a dialog pop-up").
Make sure that the front panel of the dialog is closed before calling it. If it is is open before, it won't close after it has been called.
02-04-2015 01:29 PM
02-04-2015 01:37 PM - edited 02-04-2015 01:38 PM
OK, I see the tab now. It seems that the tab is disabled. (and thus everything on it!).
Right-click the tab control...advanced...enabled state...enabled (was disabled!).
02-04-2015 03:22 PM
Thank You! It never even occurred to me that disabling the tab would disable all the controls
Regards,
Simon