Here i want to set the imagelocation like this:
pic1.ImageLocation = "";
pic2.ImageLocation = "";
and so on...
foreach (ImageResult result in response.Image.Results)
{
i++;
PictureBox thumnailBox = new System.Windows.Forms.PictureBox();
thumnailBox.Name = "pic" + i.ToString();
//HOW TO DO ??
//thumnailBox.ImageLocation = result.Thumbnail.Url;
//listView1.Items.Add(thumnailBox.Name);
}