09-09-2013 12:02 AM
My application needs to our more window during run time. when i click a button in front panel it should open an another window (not subvi calling) that contain controls of same vi program. like this i need to do this for all. How can i do??? Help me.!!
09-09-2013 02:04 AM
09-09-2013 02:20 AM - edited 09-09-2013 02:27 AM
Make your VI reentrant and then programmatically spawn new instances. To make the VI reentrant, go to File>>VI Properties. In the Category pull down, select Execution, then select "Preallocated clone reentrant execution".
Here is an example to show you how to programmatically spawn the VI:
https://decibel.ni.com/content/docs/DOC-3508
(Edit) Just add an invoke node to open the front panel of each clone after the Run VI method.