question on VB6
-
can i get the names of enum items at runtime using VB6? ;) i.e. does vb6 support some kind of metainformation (at least a little)?
-
can i get the names of enum items at runtime using VB6? ;) i.e. does vb6 support some kind of metainformation (at least a little)?
No, you can't. VB6 doesn't support Reflection. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
-
No, you can't. VB6 doesn't support Reflection. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
Yes it does. Try reading up on the typelib utility and also there is an example on how to make your own typelib utility from the cd. Using that, you can grab the classes, types, or enums defined in a dll or exe.
-
Yes it does. Try reading up on the typelib utility and also there is an example on how to make your own typelib utility from the cd. Using that, you can grab the classes, types, or enums defined in a dll or exe.
Great! Didn't know that. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome