Hi,
I have put a grid together that uses a checkbox to show me a set of checkboxes that correctly represent the data in a table.
What I am trying to do now is allow the user to change his selections by checking/unchecking the checkboxes and then saving then posting the change to the database.
I have found GetCheckedItems, but can't see how I should use it?
I also though this sort of logic would work:
For Each item In Grid1.CheckedItems
If item.Cells(5).Value = True Then
test = item.Cells(0).Value
End If
Next item
But it just thinks item.Cells(5).Value = True is always true!
I'm sure this must be very simple.....