Q: Center on screen
darrank@conxion.com.au wrote: I have made a screensaver with a picture box in the centre of a form. It works OK in screen resolution 640x480. However, when it runs at 800x600 it is no longer in the center.
Q: I think you let your form load maximized? If that's the case you have to set some code in the form_load event to set the picturebox in the centre of the form: 'Picture1.Move left, top, width, height Picture1.Move (form1.Width \ 2) - (Picture1.Width \ 2), _ (form1.Height \ 2) - (Picture1.Height \ 2) Return