G Greg Smith Jun 3, 2004 #1 Is there a way to read what the screen resolution is set to on the system running your application? Any help is greatly appreciated.
Is there a way to read what the screen resolution is set to on the system running your application? Any help is greatly appreciated.
T Tom Clement Jun 3, 2004 #2 Take a look at the static Screen values. Screen.PrimaryScreen.Bounds should give you what you are looking for. Of course, if your users might have multiple monitors, that might complicate things for you. Tom Clement Apptero, Inc.
Take a look at the static Screen values. Screen.PrimaryScreen.Bounds should give you what you are looking for. Of course, if your users might have multiple monitors, that might complicate things for you. Tom Clement Apptero, Inc.
H Herfried K. Wagner [MVP] Jun 3, 2004 #3 * "Greg Smith said: Is there a way to read what the screen resolution is set to on the system running your application? Click to expand... Monitor size: 'SystemInformation.PrimaryMonitorSize' 'SystemInformation.WorkingArea' 'SystemInformation.VirtualScreen' 'Screen.PrimaryScreen.Bounds' 'Screen.PrimaryScreen.WorkingArea' When using multiple monitors: 'Screen.AllScreens'
* "Greg Smith said: Is there a way to read what the screen resolution is set to on the system running your application? Click to expand... Monitor size: 'SystemInformation.PrimaryMonitorSize' 'SystemInformation.WorkingArea' 'SystemInformation.VirtualScreen' 'Screen.PrimaryScreen.Bounds' 'Screen.PrimaryScreen.WorkingArea' When using multiple monitors: 'Screen.AllScreens'