09-26-2016 04:42 AM
I am working on 2 vi. files where one perform hardware check, closes it selv and start a new vi file.
How do I do that?
First vi. - Hardware check and self-calibration if needed.
Second vi. - Main program using the hardware first vi. checked.
09-26-2016
07:12 AM
- last edited on
12-10-2024
08:27 AM
by
Content Cleaner
As I understand you have a VI named First.vi and need to launch(Pop Up) it when Second.vi is executed.
In LabVIEW there is a concept of SubVIs where you can call subtasks.
So you will have to insert First.vi in Second.vi and set the 'VI Properties' of First.vi as a dialog (But make sure to program is in such a way that it will closes after completion of execution.
Otherwise you can refer to https://knowledge.ni.com/KnowledgeArticleDetails?id=kA03q000000YK4VCAW&l=en-US
09-26-2016
07:16 AM
- last edited on
12-10-2024
08:28 AM
by
Content Cleaner
A very basic example of state machines here: https://www.ni.com/en/support/documentation/supplemental/16/simple-state-machine-template-documentat...
Some more guides for beginners here: http://www.ni.com/newsletter/51735/en/
Learning material links here under "Looking for free training": https://forums.ni.com/t5/Community-Documents/Unofficial-Forum-Rules-and-Guidelines/ta-p/3536495
09-26-2016 12:37 PM
Tnx Blokk, I will take a look at this and try it out.