Can anyone enlighten me as to a class based syntax that will allow me to do the equivalent of this...
Code:
Public Type SomethingElse
Index as Long
Order as Long
Ref as String
EndType
Public Type Something
Name as String
Group() as SomethingElse
End type
Public Thing as Something
Thanks in advance
.
Last edited by David.Poundall; Dec 26th, 2004 at 12:23 PM.
David
Learn the Rules so that you know how to break them properly.
The only thing that I can come up with myself is...
Code:
Something_Name As String
Something_Group As Long
' Use the Group value as an index as a pointer
' to the following one D arrays
Index() As Long
Order() As Long
Ref() As String
is there another way ?
.
David
Learn the Rules so that you know how to break them properly.
I am ending up doing something similar using a directory type instead of the SomethingElse class. Name will be the index within the directory (EDIT oops -I meant Dictionary) type.
BTW, Merry Christmas Marty
.
Last edited by David.Poundall; Dec 26th, 2004 at 12:52 PM.
David
Learn the Rules so that you know how to break them properly.