08-16-2013, 03:55 PM
Did you make the column on that datagridview into "DataGridViewImageColumn": (when you create a column create the column with that type).
Bitmap bmp = new Bitmap("image.bmp");
dataGridView1.Rows.Add("String", (Image)bmp, - 1, "None", -1);
Or you can Change the cell type to "DataGridViewImageCell"
DataGridViewImageCell cell = new DataGridViewImageCell();
cell.Value = (Image )bmp;
dataGridView2.Rows[RowIndex].Cells["MyColumn"] = cell;

