Background Image From URL...

Drags111

Member
Joined
Oct 21, 2007
Messages
20
Programming Experience
1-3
How would i do a background img from URL? Like:

picbox1.BackImage = ("http://www.blah.com/sumthing.png")

All comments are appreciated!
 
Thread moved to Windows Forms forum.
 
Do you definitley want the back ground image? If not use the image property like this:
VB.NET:
Me.PictureBox1.ImageLocation = "http://farm3.static.flickr.com/2307/2045603028_4dbe23291b_b.jpg"
 
Back
Top