get the screen resolution of my working area...how..???

Joined
Apr 14, 2008
Messages
6
Programming Experience
Beginner
Hi there......

somebody knows if How to get the screen resolution of my working area?


thanks in advance for any reply.....
 
Screen.PrimaryScreen.WorkingArea.Size
or:
Screen.PrimaryScreen.WorkingArea.Width
Screen.PrimaryScreen.WorkingArea.Height
 
It's a trick question ;) "screen resolution" means outer bounds (Screen class has Bounds property), also called display resolution. "working area" is the WorkingArea/desktop area. Both Bounds and WorkingArea properties is of type Rectangle.
 
Technicalities, despite the "screen resolution" he did specify that it's the working area that he/she actually wants.
 
Back
Top