Is there a way to update two structures when you use a FileGet to read a
record? For example:
Public Structure MyRecordStructu re
<VBFixedString( 517)Dim All_Of_Record as String
End Structure
Public Structure Record1_Structu re
<VBFixedString( 1)Dim Record_Type as String
<VBFixedString( 30)Dim CustomerName as String
<VBFixedString( 486)Dim Rest_Of_Record as String
End Structure
Public Structure Record2_Structu re
<VBFixedString( 1)Dim Record_Type as String
<VBFixedString( 8)Dim CustomerNumber as String
<VBFixedString( 30)>Dim CustomerAddress as String
<VBFixedString( 478)Dim Rest_Of_Record as String
End Structure
record? For example:
Public Structure MyRecordStructu re
<VBFixedString( 517)Dim All_Of_Record as String
End Structure
Public Structure Record1_Structu re
<VBFixedString( 1)Dim Record_Type as String
<VBFixedString( 30)Dim CustomerName as String
<VBFixedString( 486)Dim Rest_Of_Record as String
End Structure
Public Structure Record2_Structu re
<VBFixedString( 1)Dim Record_Type as String
<VBFixedString( 8)Dim CustomerNumber as String
<VBFixedString( 30)>Dim CustomerAddress as String
<VBFixedString( 478)Dim Rest_Of_Record as String
End Structure
Comment