What I'm trying to do is something like this:
Obviously it doesn't work (Forward reference to user-defined type error). Is there a way of doing it (use an user-defined type in another user-defined type?)Code:Public Type A1 SubItem1 As String SubItem2 As String SubItem3 As String End Type Public Type A2 Item1 As A1 End Type
Thanks for ANY help


Reply With Quote
