I want to have a button onces clicked up date a selected row field in my datagridview to either check a checkbox or set the field to lets say complete.

I tried using the following but I get a error. ( I am totally guessing here on this line of code! I bet that is why it does work LOL.)
Kb_cartDataGridView.CurrentRow.Selected = "status='" & True & "'"

Error:
Conversion from string "status='True'" to type 'Boolean' is not valid.

Thanks

Richard