How do you load an image from a URL and then put it into DataGridView\'s cell (not Column header)? The rows which include the images will be added to the view at runtime based
Have a look at this SO Post https://stackoverflow.com/a/1906625/763026
foreach (DataRow row in t.Rows)
{
HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(row["uri"].ToString());
myRequest.Method = "GET";
HttpWebResponse myResponse = (HttpWebResponse)myRequest.GetResponse();
System.Drawing.Bitmap bmp = new System.Drawing.Bitmap(myResponse.GetResponseStream());
myResponse.Close();
row["Img"] = bmp;
}