Hi there,

I was wondering if there's a solution to make pointers in VB... It should be with Types because I can't use classes (problems copying them). Well, I did something like this:

Code:
Type tObject
  x As Long
  y As Long

  Inventory() As tObject
End Type
As you can see I can't use it because of circular declaration . If anyone knows how to make this OR to make this with classes, please help me:

Code:
'Copy values to Object(0), don't link!
Object(0) = Object(1)
Thanks in advance