I have searched through the forum for anthing related to user defined objects, or user created objects. What I'm looking for is a basic set of code to create an object and attach methods and variables to it.
Something like:
<Define UserObject>
Dim MyObject as new UserObject
MyObject.MyName = ""
MyObject.MyAge = 0
MyObject.ChangeAge(newAge)
MyObject.Myname = Cells(1,1).value
Just the basics of creation, adding properties and methods and using them after they've been created. I'm sure it's out there but I haven't been able to find anything yet.
Something like:
<Define UserObject>
Dim MyObject as new UserObject
MyObject.MyName = ""
MyObject.MyAge = 0
MyObject.ChangeAge(newAge)
MyObject.Myname = Cells(1,1).value
Just the basics of creation, adding properties and methods and using them after they've been created. I'm sure it's out there but I haven't been able to find anything yet.