Making screen saver

  • Thread starter Thread starter Marvin Zamora
  • Start date Start date
M

Marvin Zamora

I am making a screen saver, but I don't know how to resize the form to take
on the size of the screen. It doesn't seem like I can set it explicitly in
the properties menu of the form because different people use different
resolutions. Is there a way to code it out (or some property) that will
allow the form to take the size of the entire screen (taskbar included) no
matter what resolution is used?
 
Hello, Marvin:

If you want a Form to fit the full screen, set its properties this way:

ControlBox=false
MinimizeBox=false
MaximizeBox=false
Text=""
WindowState=Maximized

And that's all.

Regards.


"Marvin Zamora" <[email protected]> escribió en el mensaje | I am making a screen saver, but I don't know how to resize the form to take
| on the size of the screen. It doesn't seem like I can set it explicitly in
| the properties menu of the form because different people use different
| resolutions. Is there a way to code it out (or some property) that will
| allow the form to take the size of the entire screen (taskbar included) no
| matter what resolution is used?
|
|
 
Back
Top