I've been trying to dinamically create instances of a class that I created but it seems that VB6 does not provide a lot of support on this topic.
I can use:
orCode:public myClass as new classType
but it is not enough.Code:dim myClass as new classType
Is there anything like a pointer to a class like in C++? Say, what is the equivalent of this in VB:
Code:myClass *pointer; pointer = new myClass; . . .
Thanks!




Reply With Quote