> How do I run the VIs directly from inside C or C++?
At the moment, the best approach is to use the ActiveX automation server
for the runtime.exe that you received. Open a connection to it, give
the VI path to the Open VI method, and you will receive a reference to
the VI instance in memory. To set parameters, you use the Set Values
method on the VI class. You can them Run the VI, and read back the
params using Get Values. I'm sure that searching developer zone for any
of these terms will get you a better tutorial.
Greg McKaskle