Code:
Structure myRecord
<VBFixedString(2)> Public v1 As String
<VBFixedString(2)> Public v2 As String
<VBFixedString(2)> Public v3 As String
End Structure
1. Can those variables maintain and preserve their specified lengths?
2. How do you move a string ("aabbcc") into myRecord (and back), and have those variables correctly populated, without addressing them individually as in: myRecord.v1 = "aa"...?