Could somebody please tell me how i should be doing this please?
I am trying to put
Public Fields_OTT() As StructField
Public Fields_SSN() As StructField
Public Fields_BIW() As StructField
into the array Field_Type - but i am doing it wrong
Thanks
I am trying to put
Public Fields_OTT() As StructField
Public Fields_SSN() As StructField
Public Fields_BIW() As StructField
into the array Field_Type - but i am doing it wrong
Visual Basic:
Public Structure StructField
Public FieldName As String
Public FieldStartPos As Integer
Public FieldLength As Integer
End Structure
'Creates fields of type object - created above
Public Fields() As StructField
Public Fields_OTT() As StructField
Public Fields_SSN() As StructField
Public Fields_BIW() As StructField
Public Field_Type As Array = Fields_OTT, Fields_SSN, fields_biw
Thanks