Screen Saver Help

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have developed a screen saver with 10 different images.when the screen
saver is executed in my computer it is in the center.but when i execute the
screen saver in a computer with a different resolution ,the images are not
centered.can you please suggest.
Thank you
 
Can you ellaborate a bit more about how are you displaying and centering
images? The System.Windows.Forms.Screen class have several methods to get
dimensions, etc.

--

Carlos J. Quintero

MZ-Tools 4.0: Productivity add-ins for Visual Studio .NET
You can code, design and document much faster.
http://www.mztools.com
 
Kurien Baker Fenn said:
I have developed a screen saver with 10 different images.when the screen
saver is executed in my computer it is in the center.but when i execute
the
screen saver in a computer with a different resolution ,the images are not
centered.can you please suggest.

Set your form's 'WindowState' to 'Maximized'. Then add a picturebox and set
its 'Anchor' property to 'None'.
 
Back
Top