Picture Box image source is it possible?

c#, image, picturebox, winforms

Solution

Try:

pictureBox1.ImageLocation =
                "http://www.indianorphanages.net/images/india-political-map.gif";

Problem

Hi I want to set dynamic path to my picture box in winforms. Is it possible to do like this my image is here some thing like http://www.indianorphanages.net/images/india-political-map.gif now I want to bind it to picture box (winforms) Is it possible?

Original source