What I'm trying to do is something like this:
Code:
Public Type A1
    SubItem1 As String
    SubItem2 As String
    SubItem3 As String
End Type

Public Type A2
    Item1 As A1
End Type
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?)
Thanks for ANY help