xtremeLogic
Programmer
Hi,
I have a listbox that has the following template of values for each row: "Company, Person"
Note: A comma separates the two values
I would like to go through all items in the listbox and store each type of value (only 2 types) in a string separated by a ';'
For example if I had the following listbox entries:
"abc, 123"
"def, 345"
"ghi, 678"
I would like to have it store the information like:
strCompany contents: "abc; def; ghi"
strPerson contents: "123; 456; 789"
Any help on how to get this done would be greatly appreciated. Thanks.
I have a listbox that has the following template of values for each row: "Company, Person"
Note: A comma separates the two values
I would like to go through all items in the listbox and store each type of value (only 2 types) in a string separated by a ';'
For example if I had the following listbox entries:
"abc, 123"
"def, 345"
"ghi, 678"
I would like to have it store the information like:
strCompany contents: "abc; def; ghi"
strPerson contents: "123; 456; 789"
Any help on how to get this done would be greatly appreciated. Thanks.