LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Problems to display a 2nd window using multithreading

I would like to know how is it possible to display a second window where I can enter a text while the main window continue to display on a graph acquired data - Thank you very much in advance
0 Kudos
Message 1 of 2
(2,336 Views)
> I would like to know how is it possible to display a second window
> where I can enter a text while the main window continue to display on
> a graph acquired data - Thank you very much in advance

There are two ways to get parallel execution. You can use the VI
Server's Run method to pretty much push the Run button of the VI. This
isn't the same as a subVI call because it runs in parallel and doesn't
need to complete before the Run method node returns.

Another way of doing this is to put the code in parallel and don't put
them in a loop that has to wait for both to finish.

Greg McKaskle
0 Kudos
Message 2 of 2
(2,336 Views)