-
Changing Images.
Hi guys, I'm having a little problem with my image box. I'm using a standard image box named "image1" and I'm attempting to change the image (that will have already been installed) with the following code:
Code:
Image1.Picture = "C:\Program Files\Common Files\Solumstone\OKB2.GIF"
Image1.Visible = True
Obviously, I'm doing something wrong, or going about changing the image the wrong way, can someone help?
Syrillia.
-
Re: Changing Images.
Need to use LoadPicture function:
Code:
Image1.Picture = LoadPicture("C:\Program Files\Common Files\Solumstone\OKB2.GIF")
-
Re: Changing Images.