06-21-2012 07:55 AM
Trying to disable the feature that starts your labview executable automatically when opened. I know that I could create a start button and all that jazz, but I would prefer to disable this feature if possible.
Solved! Go to Solution.
06-21-2012 08:14 AM
You can't disable that "feature" because that's not how applications work. An application will run as soon as it's opened. Does your web browser wait for you to press start before it starts running? That's how it works. If you don't want the VI to start its work as soon as you launch the application then you need to put it in an "idle" state as soon as it runs and it will stay there until the user presses a "start" button. I would suggest looking into a state machine design. http://zone.ni.com/devzone/cda/tut/p/id/3024
06-21-2012 08:16 AM
well durh...
Thanks I didn't think of it that way.