i use visual c++.NET 2003. well,in rows of listbox i have such looking:
12,22,34
13,44,55
11,2,33
and goes down.while the form is working and after u select a row in the listbox,i need a button to make this converstion:
(assumpt 1st row is chosen in listbox)
a=12,b=22,c=34
or (assumpt 2nd row is chosen in listbox)
a=13,b=44,c=55
.
.
.
the numbers are not fixed numbers,in each calculation u open the form,they change with different inputs.so basically,i need to take the numbers separated by comma in a row of the listbox.how can i do that?what code i need to write under the button?
OR instead of writing the numbers seperated by comma into a listbox,where can i store such data ( but 3 of them in one row) ? take care everyone,have a nice day.
12,22,34
13,44,55
11,2,33
and goes down.while the form is working and after u select a row in the listbox,i need a button to make this converstion:
(assumpt 1st row is chosen in listbox)
a=12,b=22,c=34
or (assumpt 2nd row is chosen in listbox)
a=13,b=44,c=55
.
.
.
the numbers are not fixed numbers,in each calculation u open the form,they change with different inputs.so basically,i need to take the numbers separated by comma in a row of the listbox.how can i do that?what code i need to write under the button?
OR instead of writing the numbers seperated by comma into a listbox,where can i store such data ( but 3 of them in one row) ? take care everyone,have a nice day.