Hi,
how i can change the back color of a single cell of a datagridview in runtime?
Printable View
Hi,
how i can change the back color of a single cell of a datagridview in runtime?
vb.net Code:
With DataGridView1 .Rows(index).Cells(index).Style.BackColor = Color.Green 'Color of choice. Index is the index of the row/column you want to reference (zero-based) End With