07-28-2005 10:01 AM
07-28-2005 10:20 AM
Having an exectuable run when opened is really the desired operation. It's generally considered bad style to have theuser of the app have to click on the run arrow on the tool bar. In fact, it's generally good practice to hide the toolbar completely in an executable. Most applications will have a "start" button than can be clicked after the user has entered front panel data. There's a couple of different ways to do this. You can use an event structure. You can have a separate while loop that runs prior to your main loop that exits when the start button is pressed (i'm not a big fan of this method). You can put a case statement around your code in the main loop wired to the start button.
If you just want to disable the run when opened property, that can be changed. From the app builder's VI Settings tab, select the upper level VI and click the Edit Build Settings button and change Run When Opened to "no".
07-28-2005 10:26 AM - edited 07-28-2005 10:26 AM
Message Edited by Ed Dickens on 07-28-2005 10:27 AM