Multiscreen System

J

Jim

I am writing a VBA program and need to determine the screen resolusion
of all the monitors in a 3 screen system. In additon I need to know
if Powerpoint is on screen one two or three. ANy suggestions would be
appreciated
 
K

Karl E. Peterson

I am writing a VBA program and need to determine the screen resolusion
of all the monitors in a 3 screen system. In additon I need to know
if Powerpoint is on screen one two or three. ANy suggestions would be
appreciated

You'll want to google around for examples of using EnumDisplayMonitors, followed up
with GetMonitorInfo for each one returned. You can use MonitorFromWindow with an
hWnd to find out where the bulk of that window is.
 
Top