shangrilla
Programmer
I have a checkbox as one of the columns in my grid. It is bound to a logical field. In the check1.click event I have:
IF table1.check1 = .t.
Thisform.grid1.column2.ForeColor =255
Thisform.grid1.column3.ForeColor =255
Thisform.grid1.column4.ForeColor =255
ENDIF
This changes the color for all the records in the grid. I only want to change the color for the row in which the checkbox is checked. May be 'active row' property ?
IF table1.check1 = .t.
Thisform.grid1.column2.ForeColor =255
Thisform.grid1.column3.ForeColor =255
Thisform.grid1.column4.ForeColor =255
ENDIF
This changes the color for all the records in the grid. I only want to change the color for the row in which the checkbox is checked. May be 'active row' property ?