I have this structure, with an array of the structure type.
Structure CustomerAccountsRec
Dim strFirstName As String
Dim strLastName As String
Dim intAge As Integer
Dim strAddress As String
Dim strTown As String
Dim strPostcode As String
Dim strCusNum As String
End Structure
Public strCusArray() As CustomerAccountsRec
I want to be able to take the strCusNum of the array and populate a combobox with it but can't figure out how. Any help?