Is there anything resembling pointers in VB6? I am looking at implementing some simple data structures(link list, Btree, AVL tree, red-black) in VB6 with a *nix (egcs) C++ background. Any help would be appreciated.
-jfs
Printable View
Is there anything resembling pointers in VB6? I am looking at implementing some simple data structures(link list, Btree, AVL tree, red-black) in VB6 with a *nix (egcs) C++ background. Any help would be appreciated.
-jfs
Nope, no pointers in VB :(
Closest thing to them is the AddressOf operator. Look it up.
I assume you're doing AI work of some sort, and VB's not the way to go. Wrtie the procedures in C, package them in a DLL and call it from VB if you want a nice interface.
I've tried to modify a treeview control for this before, but no dice.