Checkbox uncheck in a datagrid

dr223

Registered User.
Local time
Yesterday, 20:18
Joined
Nov 15, 2007
Messages
219
Hallo,

I have a checkbox on a datagrid and on loading the form is set to True (checked) with the code below which works well.

For irow = 0 To DgvToPay.Rows.Count - 1

DgvToPay.Rows(irow).Cells(3).Value = True

Next irow


What am trying to do is when the checkbox is unchecked then the next textbox on the datagrid i.e., DgvToPay.Rows(irow).Cells(4).Value is set to 0.00.

Any help please...

Thanks
 

Users who are viewing this thread

Back
Top Bottom