Hi Wildturkey,
I had a quick go and came up with this, I dont know if its exactly what you want but might give you some ideas!! I prefer to use the ImageBox control instead of the PictureBox control because of its stretch property. If you do the image resizing in the Form_Resize event they should appear to go at the same time:
Private Sub Form_Load()
'Alter the size of the form, in this case just maximise it
Form1.WindowState = vbMaximized
End Sub
Private Sub Form_Resize()
'As soon as the form is resized the image will follow
Image1.Height = Form1.Height
Image1.Width = Form1.Width
Image1.Stretch = True
Image1.Left = Form1.Left
Image1.Top = Form1.Top
End Sub
Sorry if I've got the wrong end of the stick!!
Enter your message below
Sign in or Join us (it's free).