02-09-2009 10:38 PM
iam krishnaprasad. iam new to LABVIEW.
i have 1+year experiance on VC++6.0.
Is there any possibility in LABVIEW to Create a release mode EXE like VC++ .
if there please suggest me how to create it..
Solved! Go to Solution.
02-09-2009 10:54 PM
I'm not sure what a 'release mode' exe is, but to create an exe from a VI:
If you have LabVIEW 7.1 or earlier:
Go to Tools >> Build Executable
Use the wizard to create the executable and/or installer.
If you have LabVIEW 8.2 (i think) or later:
You need to have the VI, and all subVI's in a project.
From there, you build a dll.
Just search for 'build executable' in the forums, you should get dozens of hits.
02-09-2009 10:55 PM
What is a "release mode" executable?
LabVIEW comes with an application builder to create executables with the Professional Development Suite. It can be purchased separately if you have the Full Development Suite.
The executable file can be run on other PC's as long as those PC's have the LabVIEW runtime engine installed. The application builder can create installers for both your LabVIEW application and for the needed runtime files.
02-09-2009 11:18 PM
Mr.Revens Fan,
Thanks for your reply.
now iam using LABVIEW 8.2 Professional Developement system.
should you please suggest me to create executable file(with any function like graph and button etc) in LABVIEW8.2.
02-10-2009 01:10 AM
First, you must include you VI inside a LV project. This can be done automatically by selecting New Project from the Files menu in that (any) VI.
LV will ask you whether to include any open VI to be added to this newly opened project. Click Add & thats it. Now save this project in a location of your preference.
Then, in the Project Explorer window, right click Build Specifications >> New >> Application (EXE) or Installer, as per your requirement.
The former will create you an EXE only while the latter will bundle all that needed for an installer (mainly LV run-time engine of the version under use).
If you create the EXE alone, then you need to install the LV run-time engine of the corresponding version manually in the target PC first, before trying to run you application (EXE). Else, it will throw error & wont run properly.
02-10-2009 05:10 AM