LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Highlight Execution in Project Classes

Solved!
Go to solution

I have a project that has libraries and classes in it. When I run my program, the classes/libraries are dynamically chosen based on the device connected to the computer. I am looking for a way to highlight execution of a vi in one of the classes. Currently I try to probe in the class vi and I don't get any updates or anything out of it. Is there a way to highlight execution in the vi of the classes?

0 Kudos
Message 1 of 3
(818 Views)
Solution
Accepted by topic author LearningLabVIEW

If you're dynamically loading VIs, probing the code in your project won't show you anything as a copy of the VI is created before running it.  You can put a breakpoint into the VI and the dynamic copy or copies will stop at the breakpoint.  Once you have the copies open you can probe them as usual

 

Cheers

Brett

Senior Software Development Engineer
Certified LabVIEW Architect and LabVIEW Champion
https://theLonelyAnt.com
https://GDevConANZ.org.au


Message 2 of 3
(787 Views)

Thanks for the information.

 

Basically my project has classes/libraries from another project. This main project uses the sub project classes/libraries dynamically. So, to be able to see it from the main project, I had to open up each vi that contained a class/library from the sub project and watched them individually.

0 Kudos
Message 3 of 3
(706 Views)