02-12-2009 09:09 PM
02-12-2009 09:14 PM
You need to build it into an standalone executable using the application builder.
What version of LV are you using?
What kind of license do you have for LV?
Mike...
02-12-2009 09:35 PM
02-12-2009 11:50 PM
02-13-2009 12:03 AM
02-13-2009 05:10 AM - edited 02-13-2009 05:13 AM
Ok, very good. A typical program will have some initialization code that sets things up, a loop that does whatever you want your program to do a bunch of times, and then when you tell the program to quit, some deinitialization code that returns the system to some default state and cleans up any resources you may have opened. The Quit LabVIEW function needs to be placed such that it is the very last thing that gets called in this deinitialization code.
Something else to be careful of is if you are using relative file paths anywhere in your code - say for example you are expecting to find a configuration file in the same directory as the VI that is reading it. When you build an executable your relative paths change.
Mike...
02-18-2009 12:48 AM
I think I've fixed the problem already. Thanks again. Now I have a new problem, when I try running the stand alone application on another computer, I got this error :
"Find the shared library named nilvaiu.dll"
02-18-2009 06:53 AM