LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

pop up window without user prompt

Is it possible to have a pop up window without user prompt ie the window should pop up with a message on start of the process and should go off by itself once the process is completed without any user prompt.
0 Kudos
Message 1 of 5
(2,675 Views)

Yes, use the FrontPanel.Open property of the VI (Application palette property; right-click: Select Class->VI Server->Vi). Set it to true, wait until the process is finished, set to false.

 

Felix

0 Kudos
Message 2 of 5
(2,662 Views)
Thanks its working and i got some other also method using a while loop, the one you suggested is good.
0 Kudos
Message 3 of 5
(2,655 Views)
Is there any better way of programming the following programs.
Download All
0 Kudos
Message 4 of 5
(2,645 Views)

Yes. You've written some convoluted code that does nothing. Even if you simplify it, you cannot stop it from the main. If you embed the subVI, your main will pause unless the subVI is in a separate loop.

 

 

You should spend some time with the tutorials and look for examples of using VI Server (as mentioned in the earlier post) to call and stop an external VI.

Message Edited by Dennis Knutson on 05-21-2009 08:37 AM
0 Kudos
Message 5 of 5
(2,637 Views)