i'm using visual basic 6, in uC section....
i have a groupproject with a control.
in a module i build a type variable and a variable public:
Code:
Type Objects
    ObjectsNumber As Long
    ObjectName As String
    ObjectSelected As Boolean
End Type

Public lstObjectsNames() As Objects
why these variable isn't only public in instance(i think that is the right term), but in intire object?
for example: i have 2 sprites in a form, when i my property page(these variable isn't a property, but is in a property page) i can see(in both objects, the same value)...
why these?
can i put these variable in a property?
thanks