How can I have a user defined type with a user defined type? The follow would generate a compiler error of "Forward Reference to user-defined type". Thanks in advance.
Private Type InputDetail
RecordCode As String * 1
ResultCode As String * 5
detaildata As DetailRecord '<-----------
End Type
Private Type DetailRecord
DetailCode as String * 5
Details as String * 30
End Type
Private Type InputDetail
RecordCode As String * 1
ResultCode As String * 5
detaildata As DetailRecord '<-----------
End Type
Private Type DetailRecord
DetailCode as String * 5
Details as String * 30
End Type