07-27-2005 01:23 AM
07-27-2005 07:11 AM
You will have to multithread this application, that is put your TCP/IP in one loop and your user interface/GUI in another loop. Loops can communicate through queues, locals or any other synchronize mechanism. If you use a dialog inside the same thread as your data collection, the data collection will not continue until the modal message box returns (due to the data flow). I am assuming that you are doing this but I don't have your code. One other option is to not use the message box but make a popup subvi which is reentrant, allowing the execution to continue even before the sub-routine finishes execution, but this solutions can cause problems and the multithreaded solution is more safe.
Paul
07-27-2005 11:13 AM