10-25-2006 04:47 PM
10-25-2006 04:50 PM
10-25-2006 05:00 PM
10-25-2006 05:14 PM
10-25-2006
05:31 PM
- last edited on
10-07-2025
08:17 AM
by
Content Cleaner
LabVIEW has an ActiveX server that allows other applications to automate it. You can, for instance, open a reference to LabVIEW from a C++ environment that supports ActiveX, then open a reference to your VI, run it, and so on.
This is an example that does so in CVI, a C-based language geared for virtual instrumentation. You probably won't be able to use this code directly, but it might give you some ideas on how to start. Also, here's an example for VB that does something similar. If your C/C++ environment doesn't support being an ActiveX client, then you'll probably have to build and call LabVIEW DLLs that can act as the ActiveX client for you.
10-25-2006 05:41 PM