Although I am not fully verse in this subject, I have to disagree because of previous experiences I had.
You can write executables that return "exit codes". For example, in C++ you can use the function exit(). The syntax of the function is:
#include
void exit(int status);
"status" is provided for the calling process as the exit status of the process. Typically a value of 0 is used to indicate a normal exit, and a nonzero value indicates some error.
In the past I've seen commercial applications that allows you add your own functions. Sometimes what the application expect is an exit code after your custom .exe executes.
Unfortunatelly, I've been unable to do this with LabVIEW, therefore I must use another development environment
such as MS VC++ or Borland C++ Builder to accomplish this. I wish I could do that with LabVIEW though...
Enrique
www.vartortech.com