-
Hi,
This is my problem.
I have a slideshow program
I am making.The pictures
that appear in the slideshow are
to big to fit the screen.
I want the pictures that appear
to be about 2/3 of the screen.width
So could someone give me the
code to resize the PICTURE that
is in the frame, not just the
frame width and height.
Thanks!
[Edited by Dayo312 on 06-15-2000 at 05:29 PM]
-
Use the Screen Object to get the size of the screen.
Code:
TheWidth = ( Screen.Width / 3 ) * 2
TheHeight = Screen.Height
Form1.PaintPicture 0, 0, TheWidth, TheHeight