10-13-2011 10:58 AM
I have a subVI that handles the XY graph of my main VI. How do I make the graph from the subVI show in the front panel of the calling VI? Thanks
Solved! Go to Solution.
10-13-2011 01:01 PM
Make an output terminal for your subVI graph. Wire that output to a graph indicator on your main VI's block diagram.
Alternatively, use a subpanel on your main VI's front panel. Load your subVI's front panel into the subpanel.
Or use the "CtlValue.Get" method and wire the output from the method to a graph indicator on your main VI's block diagram.
You could also transfer the data to your main VI with a queue.
There are lots of ways to do it, as you can see. Having precious little information about exactly what it is you really want to do, it's difficult to say which one is the best answer for you. I'd go with my first suggestion, though, as much the simplest!
10-13-2011 01:29 PM
Thanks! I'm gonna try some of the methods to decide wich one is better