
how to declare recursive type in VB?
Yes, by using classes you can create a link list.
Class:Class1
Public Next as Class1 'or alternatively use property procedures
Remember though that you can simply use the collection object...
Cheers
Cliff Saunders
Quote:
> for example
> Type myType
> strFirst As String
> nID As Long
> mtNext As myType
> End Type
> this declaration doesn't work. is there any way to declare recursive
> type at all?