R RickN Oct 21, 2003 #1 What's the best way to determine the resolution of the client's monitor, eg. 640x480, 800x600? Thanks, RickN
What's the best way to determine the resolution of the client's monitor, eg. 640x480, 800x600? Thanks, RickN
R Ryan LaNeve Oct 21, 2003 #2 RickN said: What's the best way to determine the resolution of the client's monitor, eg. 640x480, 800x600? Thanks, RickN Click to expand... System.Windows.Forms.Screen.PrimaryScreen.Bounds returns a Rectangle object with the top/left and width/height of the primary screen. Good luck.
RickN said: What's the best way to determine the resolution of the client's monitor, eg. 640x480, 800x600? Thanks, RickN Click to expand... System.Windows.Forms.Screen.PrimaryScreen.Bounds returns a Rectangle object with the top/left and width/height of the primary screen. Good luck.
M Mattias Sjögren Oct 21, 2003 #3 What's the best way to determine the resolution of the client's monitor, eg. 640x480, 800x600? Click to expand... The Screen.Bounds property. Keep in mind that more and more people are using multiple monitors these days. Mattias
What's the best way to determine the resolution of the client's monitor, eg. 640x480, 800x600? Click to expand... The Screen.Bounds property. Keep in mind that more and more people are using multiple monitors these days. Mattias