Hi all,
I want to insert a background image, but how can i assign it to 800x600? Thx in advance
Printable View
Hi all,
I want to insert a background image, but how can i assign it to 800x600? Thx in advance
First, place the image in an Image control, then set the Stretch property to True. Next, change the width and height to your custom settings.
Or use the PaintPicture method.
Code:Me.PaintPicture Me.Picture, 0, 0, 600 * Screen.TwipsPerPixelX, 800 * Screen.TwipsPerPixelY
Thx Megatron for your help.
I have another question. Can I create "click Spots" like Map in HTML on my image? Please show me if you know