> 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