03-28-2024 09:19 AM
Bonjour,
Est ce qu'il est possible d'ouvrir une application LabVIEW sans l'exécuter ?
Est ce qu'il est aussi possible de mettre les boutons Exécuter et Stop sur le Front Panel ?
Merci d'avance
Maxime
Solved! Go to Solution.
03-28-2024 11:02 AM
if you are talking about an executable, yes you can
1. To avoid Running when opening the EXE:
Before generating the Executable, on the original Vi right click on the VI icon and select VI Properties ->Execution
ensure that the option "Run when Opened" is NOT Checked.
2 To show Run and Stop
ON the Vi properties, select -> Windows Appearance then click on CUSTOMIZE
on the next window
Ensure that the options:
Show Tool bar when running and
Show Abort button and Show Run Button are selected.
03-28-2024 11:47 AM
@MaximeBrrr wrote:(translated by google)
Is it possible to open a LabVIEW application without running it? Is it also possible to put the Run and Stop buttons on the Front Panel?
A build application should always be running and built as a proper state machine, so your question is questionable. 😄
A proper state machine starts out in an idle state and waits for user actions after initialization. That way you can place any controls you want and code for them (e.g. to start an experiment, or close the program)
You can change the build specifications to e.g. show the toolbar or not to run when opened, but these are not reasonable choices. (build specs, source file settings)
04-03-2024 03:01 AM
Merci pour vos réponses, ça fonctionne !
J'avais besoin de faire cela pour la sélection des port Com et la sélection de l'emplacement avant de faire tourner l'application.
Maxime