I am trying to us a Type within another type but it is not letting me.
Public Type MyTable
Name As String
IDStartingNumber As Integer
Items(50) As MyItem
End Type
Public Type MyItem
Name As String
DataType As DataTypes
Number As Integer
AllowNull As Boolean
Unique As Boolean
Reference As MyTable
End Type
What is going on and how do I fix this?