11-13-2017 04:51 AM
Hello all ,
i have Designed a VI which calls the another VI . error 1003 continuously occurring and saying " The VI is not executable. This error may occur because the VI is either broken or contains a subVI that LabVIEW cannot locate. Select File>>Open to open the VI and verify that you can run it. "
i am new to this language . post your ideas
11-13-2017 05:47 AM
11-13-2017 06:04 AM
Hello gerdw ,
The load test is a Main VI. choose test is a sub-vi .
In choose test screen there will be a lot of buttons. so I am using event structure. For example in that screen, the user clicks on " manual folding button " means another vi will run. so i planned to use same
" load test .vi " again . by simply changing the VI name . it will call the corresponding vi's and run.
this is my plan .
11-13-2017 06:18 AM
Hello gerdw ,
Did you understand what i am saying
?
11-13-2017 08:50 AM
Hi bhuvanesh,
you cannot run "Test Load" from "Choose Test" because "Test Load" is a subVI of "Choose Test": it is NOT in a state able to be run…
As said before: you create some weird kind of recursion - and you shouldn't do this!
11-13-2017 11:08 PM
Hello gerdw ,
ok . thank you for your guidance. but tell me some suggestion, in the " choose test " screen there will be a lot of buttons if I click on 1 button means another corresponding VI has to run on the front.
likewise, other vi has to run for the corresponding buttons presses
11-14-2017 01:43 PM
Hi bhuvanesh,
if I click on 1 button means another corresponding VI has to run on the front.
likewise, other vi has to run for the corresponding buttons presses
You can do all this - as long as you don't try to create recursion!
11-14-2017 10:32 PM
Thank you gerdw ,
I finished that using the static references inside each event structure cases. thanx, a lot for your replies. I expected you to tell some other methods to do that.