From Friday, April 19th (11:00 PM CDT) through Saturday, April 20th (2:00 PM CDT), 2024, ni.com will undergo system upgrades that may result in temporary service interruption.

We appreciate your patience as we improve our online experience.

LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Command Line Arguments when Not Configured

I'm trying to launch several LabVIEW applications from the command line.  Some are configured to accept command line arguments and other are not.  I would like to provide the argument for all of them so that if they do use the data then they can do what they need to do accordingly.

 

However, what I'm seeing is that for the applications that are not configured for command line arguments they seem to try to open the command line argument as if it was a file:

 

Command line:  Application.exe -helloworld

Result:  A dialog with my application's icon saying:

The file C:\<applicationdir>\-helloworld could not be opened.  No application was found to open that type of file.

 

After hitting the OK button on the dialog, the application loads like normal.  The only exception is "-automation" which seems to be handled gracefully and my application starts like normal (i.e. without intervention).

 

So, the question is, what is happening with these command line parameters when the application is not configured to accept them?  Is the run-time doing something with them?  Is "-automation" some special command line argument that I shouldn't be using for my custom applications since it seems to be handled by the run-time?

 

One thing that I did try was to use the " -- " to preface the command line arguments for both types of applications and it seems to work.  Is this my only option?

 

 LabVIEW 2009, 2010, 2013

0 Kudos
Message 1 of 3
(3,009 Views)

As far as I know, using "--" to preface the arguments is the only way to pass them to LV applications that haven't been configured to accept arguments

0 Kudos
Message 2 of 3
(2,995 Views)

check this

Passing Command Line Arguments to a LabVIEW Executable

http://digital.ni.com/public.nsf/allkb/17C3AD70493CE0208625666A00763364

0 Kudos
Message 3 of 3
(2,949 Views)