10-03-2008 02:49 PM
Is there any easy method of loading a VI and search through all the types to determine what the Representation type is? I need to convert a ton of VIs from DBL to SGL and would like to be able to know if I've converted them all. Any ideas?
Thanks,
Derek
Solved! Go to Solution.
10-03-2008 05:18 PM
Depends on what you mean by "easy".
You would need to use VI Server functions to open a reference to the VI and get the pane's controls, and then for each control you can get the value as a variant and then use the "Get Type of Variant" VI that resides in the vi.lib\Utility\GetType.llb library. For example:
10-03-2008 05:26 PM
10-04-2008 11:39 AM
Thanks - I'll try this!
Derek