12-07-2007 07:42 AM
12-10-2007 03:47 PM
12-10-2007 07:51 PM
Where I use it to to make utility functions which can take a reference to a vi and apply some function on all objects on the referenced object. Its a commpn theme where essentially for each object in vi's object list can get its classID or class name and then typcast the object to the approperate more specific class then apply a function specific function depenfding on the class type.
Paul
04-16-2008 07:23 PM
04-16-2008 11:43 PM - edited 04-16-2008 11:44 PM
Create a new VI and press Ctrl-Shift-B. This brings up the Class Browser. Make sure the "Object library" ring is set to "VI Server". Now, if you click the "Class" ring, you'll see the names of every available VI Server class. This is the easiest way I can think of that you can get what you need. I wouldn't worry about the Class IDs, since the Class Name should be all you need for the app you described.
-D
04-17-2008 01:30 AM
If you go to the LAVA forums and search for "class generator" you should be able to find something.
But the class names can change between versions. Isn't that the whole point of having class IDs?
Darren wrote:
I wouldn't worry about the Class IDs, since the Class Name should be all you need for the app you described.
04-17-2008 01:48 AM - edited 04-17-2008 01:53 AM
04-17-2008 04:21 AM
It s hightime we had a property/method that ll throw out ALL the Class IDs & Class Names available in LV.
04-17-2008 10:02 AM
tst wrote:
But the class names can change between versions. Isn't that the whole point of having class IDs?
04-17-2008 10:54 AM
why is this info so hard to get? Why isnt there an enum provided with this info in it fro each version of labview? I find it useful for generic operations on a referenced object.
Paul