LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

I need to hide Loading windows in executable version

I need to hide the loading windows
(The panel that load each vi of the hierarchy)
when i start an executable version of my VI.

Thanks

Dany
LabVIEW ChampionArchitect
0 Kudos
Message 1 of 3
(2,970 Views)
You can make a splash screen for your application, with a small amount of code that uses VI Server to open a VI reference to the main VI of your program. This should load the entire hierarchy without showing LabVIEW's 'Loading' screen, unless it has trouble finding a subVI (shouldn't be an issue if they're all in the EXE) or a DLL.


For more information, see http://messages.info-labview.org/2002/02/13/29.html.

0 Kudos
Message 2 of 3
(2,970 Views)
What Ian said about finding a subVI or DLL will cause the problem. If you've got dynamically called VIs that were added as support files, the build doesn't update the path information for them. If the path to a DLL is different (like in a sub-folder), the same thing will happen. In the development mode, try to re-create the same folder structure that your executable will have and see if that helps.
0 Kudos
Message 3 of 3
(2,970 Views)