LabWindows/CVI

cancel
Showing results for 
Search instead for 
Did you mean: 

Is there a way to keep a panel open and on top until it is closed?

I don't want the user to be able to go to any other panel while this panel is opened.
0 Kudos
Message 1 of 2
(2,895 Views)
Use InstallPoup() rather than DisplayPanel(). This makes your panel appear as a modal dialog box, and it prevents input to other panels while it is visible.
 
(An exception is that if the callback for controls on that panel in turn cause another panel to be displayed with InstallPopup(), the new one overlays the first, and must be dealt with before you can operate the first.)
 
--Ian 
Message 2 of 2
(2,890 Views)