01-10-2024 09:04 AM
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?
Solved! Go to Solution.
01-10-2024 11:49 PM
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
02-01-2024 08:39 AM
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.