11-07-2007 04:56 AM
I have an application where I have a re-entrant subVI that is being used in three subpanels in my main VI. How can I look at one instance of this subVI for debugging?
In my previous version I used the same subVI, but instead of using a subpanel I linked the subVI controls to my main VI using references. When debugging, it worked great as I could open a clone of the VI and use highlight execution, but it required a lot of work in my main VI if I modified the interface to the subVI. I therefore wanted to try using subpanel, but I then have to call my subvi dynamically.
Terje
Solved! Go to Solution.
11-07-2007 07:38 AM
The simplest approach (for LV 8.X+) would be to put a break point just prior to the re-entrant call and then single step into the sub-VI.
This was not possible prior to LV 8.0.
Remember to get rid of the break-point when you are done.
Ben
11-07-2007 08:13 AM
Thanks Ben.
That’s it.
I didn’t know you could step into a ”Call By Reference Node”
Terje
11-07-2007 10:16 PM
11-07-2007 10:31 PM
11-08-2007 11:33 AM
Thank you guys for great replies.
Jarrod S.: Didn’t know about that feature. Exactly what I wanted.
Terje
02-21-2014 10:27 AM - edited 02-21-2014 10:28 AM
Jarrod S., thanks, this is exactly what I want.