09-15-2009 12:58 AM
Hi,
Is it possible to generate a command line(CLI) executable using LabVIEW? This CLI exe will be called with certain command line arguments by another application (written in Visual Basic). The LabVIEW Run time engine can be installed separately on the host PC.
Thanks for your help
Siddharth
Solved! Go to Solution.
09-15-2009 01:09 AM
Hi Siddharth,
it's not really a command line application, but you can read the parameters in your application and you can write text to the command window. Can you explain a bit more about what you are trying to do?
Mike
09-15-2009 07:15 AM
Hi Mike,
The LabVIEW application will be invoked with certain arguments by an external application and I don't want the Front panel of the LabVIEW application to be visible. Is it possible to implement this??
Also how can I pass arguments to my LabVIEW application?
Best Regards,
Siddharth
09-15-2009 07:49 AM
09-15-2009 07:52 AM
this thread may help:
http://forums.ni.com/ni/board/message?board.id=features&message.id=42&query.id=670552#M42
09-15-2009 07:55 AM - edited 09-15-2009 07:56 AM
09-15-2009 08:56 AM
09-15-2009 09:30 AM
The only way which I have found is creating command-line "wrapper", where LabVIEW-based DLL is called. So, you can not only pass parameters to command line application, but also return values from CLI app.
Check this thread: Command line tool that returns a value
Andrey.
09-15-2009 09:57 AM
09-15-2009 10:00 AM
I agree with Andrey. Making a dll instead of an exe makes it easy to pass/return data and it solves the hiding front panel issue.