Question

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?

Was it helpful?

Solution

Try:

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

OTHER TIPS

To update a picture box from a file you can use the Load method:

pictureBox.Load(filename);

From the help:

Load(String) Sets the ImageLocation to the specified URL and displays the image indicated.

Just set the ImageLocation property like this:

pictureBox1.ImageLocation = "http://www.indianorphanages.net/images/india-political-map.gif";
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top