LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

How do I call Labview executables from Visual Basic. The Example on Developer Zone is not of much help

How does one call LabView executables from Visual Basic? Please help me with some example code as well
0 Kudos
Message 1 of 2
(2,236 Views)
This example uses the Shell function to run calc.exe an application.

' Specifying 1 as the second argument opens the application in normal size and gives it the focus.

Dim RetVal
RetVal = Shell("C:\WINDOWS\CALC.EXE", 1) ' Run Calculator.

... for details, check VB help on SHELL.

Hope this helps
0 Kudos
Message 2 of 2
(2,236 Views)