请老师帮忙下这个问题(未将对象引用设置到对象的实例)
运行程序,选中一行没事,但选中一列标题,就会触发这个异常。请老师们帮忙一下。谢谢!新手的本人已经山穷水尽了……
private void dataGridView1_SelectionChanged(object sender, EventArgs e)
{
if (dataGridView1.CurrentRow.Cells[9].Value != DBNull.Value)
{
MemoryStream ms = new MemoryStream((byte[])dataGridView1.CurrentRow.Cells[9].Value);
Bitmap mp = new Bitmap(ms);
this.pictureBox1.Image = (Image)mp;
}
else
{
this.pictureBox1.Image = null;
}
}
[ 本帖最后由 l7556950 于 2012-7-15 16:50 编辑 ]