Get Content of Listbox and insert into table

sameera

Member
Joined
Jun 16, 2005
Messages
20
Programming Experience
Beginner
Get Content of Listbox and insert into table

Hi I'm a nowise programmer for vb.net I have a question that ,i have a checked list box where i want to read from that list box and insert in to a table. So please let me know how to navigate and do my work.

and my list box has 2 columns and i wand to read a given column also,

please help me

regards,

sameera
 
Last edited:
Iterate over the items Collection but if you want only selected item/items then use the corresponding property (i.e. SelectedItem, SelectedItems or even only CheckedIndex) .
Its all depends upon weather you need to operate on all values ,selected values or checked values (oh yeah the last two also return Enumerator if i m not at mistake and u can use enamurator to do more tricks)
 
Back
Top