私は1,0である私のdb vaulesごとにデータグリッドビューセルにアイコンを設定しようとしています私はこのコードを使用しています(このサイトからコピーされました!)
foreach (DataGridViewRow row in DataGridView1.Rows)
{ DataGridViewImageCell cell = row.Cells[8] as DataGridViewImageCell;
if row.Cells[8]==1)
cell.Value = (System.Drawing.Image)Properties.Resources.ok;
if row.Cells[8]==0)
cell.Value = (System.Drawing.Image)Properties.Resources.notOK;
}
しかし、コンパイラはこのエラーを示しています:
System.NullReferenceException was unhandled by user code
Message="Object reference not set to an instance of an object.
そのコードで何が間違っていますか?