Hi, this my first post, but:
OK, I have a CheckedListbox being populated from a DataSet.
I have the code:
Now, I want each item to be added to the DataSet based on its position in the ListBox.
Obviously, I cant say
So what can I do?
OK, I have a CheckedListbox being populated from a DataSet.
I have the code:
Code:
Dim item As Object
For Each item In CheckedListBox1.SelectedItems
Next
Obviously, I cant say
Code:
newdatarow(0) = item.PositionInListBox
Last edited: