02-13-2012 06:32 PM
I am running a DOS program through a system() command from within a CVI program in CVI 2010.
It works on my laptop, but on my PC it crashes with a library function -3 error. Why is that?
thanks,
Joel
02-13-2012 11:58 PM
As you can see in the online help, return code -3 stands for "File not found": it could be that you are passing a wrong pathname to the function.
02-14-2012 12:00 AM
The function panel help says:
-3 | File was not found. |
I guess you did allready check that this command exists on your PC.
How do you call that command ? With full path ? Or just the command? Then there may be differences in $PATH.
02-14-2012 04:52 PM
Thank you for your courteous answers.
joel