sruthiv Posted October 6, 2005 Report Share Posted October 6, 2005 Hi I am new to LabView. I am working on an application that can load and run any VI (created in LabView 7.1) I am trying to run a VI from C# application. Given the VI name, how do i find out what all parameters the VI has? lv = new LabVIEW.ApplicationClass(); //Set the path to the VI string vipath= "c:\\temp\\arith.vi"; //Get reference to that VI vi= lv.GetVIReference(vipath,"",true,0); Before calling , vi.Call(ref param1,ref param2); I want to get the param info from the VI itself, instead of hard coding in the application code. thanks Quote Link to comment
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.