R
RBCC
I have the following structure:
Structure member
Dim name As String
Dim phone As String
End Structure
Dim memberarray As New ArrayList
Dim membership As member
********************
Ihave the following form:
a lstbox filled with the last,first of all the members
a textbox holding the names of all the members
a textbox holding the phone numbers of all the members
Now I am in the middle of writing code to modify the list of names, I
would like to use the arraylist to insert the contents of the textbox
into the arraylist, I have tried everything but the right thing.
Could someone show me the right way to do this so I can insert the
contents of the textbox in the 9th position of the arraylist?
john
Structure member
Dim name As String
Dim phone As String
End Structure
Dim memberarray As New ArrayList
Dim membership As member
********************
Ihave the following form:
a lstbox filled with the last,first of all the members
a textbox holding the names of all the members
a textbox holding the phone numbers of all the members
Now I am in the middle of writing code to modify the list of names, I
would like to use the arraylist to insert the contents of the textbox
into the arraylist, I have tried everything but the right thing.
Could someone show me the right way to do this so I can insert the
contents of the textbox in the 9th position of the arraylist?
john