Hi
try to use CellFormatting event of DataGridView
private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
if (dataGridView1[e.ColumnIndex, e.RowIndex].Value.ToString().Equals("null"))
null;
You can use google to search for other answers