You can do this via LabVIEW's automation interface. In Visual Basic, go to the Project menu, then References, then check the item for LabVIEW 7.0 Type Library (or another version if you don't have LabVIEW 7.0). In your application, you can get to the VI like this:
Dim lv As LabVIEW.Application
Set lv = New LabVIEW.Application
Dim path As String
' Set path to the path of the vi that you want to run.
Dim vi As VirtualInstrument
Set vi = lv.GetVIReference(path)
There are several properties that you can set on the VI and you can set values on the controls on the front panel via the SetControlValue method. Ultimately, once you have everything set up, you can run the VI via the Run method.
- Elton