datagridview change CELL BG color on change of value

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi
Looking for examples on changeing the CELL background color when the value
is changed for that cell only (not row color).

Thanks
Brian
 
try this code:

grid.Rows[iRow].Cells[j + 1].Style.BackColor = Color.FromArgb(220, 220, 220);
 
Back
Top