//flex table opened by JP

Click to See Complete Forum and Search --> : load image in to VB


Tony2005
10-01-2003, 06:03 PM
what code would i use to load a bmp (or jpeg/gif etc) in to a picture box?

thanks for any help:t

fishybawb
10-02-2003, 08:18 AM
Bear in mind that my VB skills are rusty at best, but I think you just want the LoadPicture function. Check it out in MSDN. It goes something like:

MyPicture.Picture = LoadPicture("mypic.gif")

where MyPicture is the name of your picture control.