07-26-2006 06:42 PM
07-27-2006 09:11 PM
Hi GaryZ21,
I don't know much about your program from what you have here, but the ProcessSystemEvents() function is explained in the LabWindows/CVI Help file. You can find this directly from LabWindows/CVI or from the Windows Start Menu. Please view this and see if it provides helpful information for your program. If not, please let me know!
08-01-2006 09:56 AM
08-01-2006 10:33 AM
08-01-2006 10:36 AM
It might be an idea to re-structure your code to take advantage of CVI's event driven design philosophy, rather than treat it as a classical linear program. For example, you could use InstallComCallback() so that your nominated function automatically gets called whenever a specified set of conditions is met on the serial port (eg CR/LF received). This way you would avoid the need for ProcessSystemEvents().
JR
08-01-2006 10:38 AM