Yes .
Use the Cellpainting event in a Datagrid View.
| | private void dgv_childList_CellPainting(object sender, DataGridViewCellPaintingEventArgs e) { if (e.ColumnIndex == 0) { if (e.Value.ToString() == "ADO.NET") { e.CellStyle.ForeColor = Color.Red; } } } |
That is .NET 2 ? Do you need 1.1 ? I think if I remeber writely you need to override a DataGridTextBoxColumn and the paint commands. Have an example if you need one ?
James