I'm trying to get a datagridview updated that is populated by the datatable.
When launching it shows the image of (Properties.Resources.database) and not (Properties.Resources.completed).
DataTable dtStores = new DataTable();
dtStores.Columns.Add("Total");
dtStores.Columns.Add("Store");
dtStores.Columns.Add("Status",typeof(Image));
DataRow rStore = dtStores.NewRow();
rStore["Total"] = "";
rStore["Store"] = "Supermarket";
rStore["Status"] = Properties.Resources.database;
dtStores.Rows.Add(rStore);
dataGridView1.DataSource = dtStores;
DataGridViewRow dGRVStore = dataGridView1.Rows[0];
DataGridViewImageCell imgStatus = new DataGridViewImageCell();
imgStatus.Value = Properties.Resources.completed;
dGRVStore.Cells["Status"] = imgStatus ; dataGridView1.Refresh();