EnumDisplayMonitors lists all the monitors that are currently activated. However, it doesn't seem to return disabled ones (i.e. ones that have 'extend my desktop onto this monitor' unchecked). How do I get a count including those disabled ones?

link|improve this question

You have to talk to the video driver directly. IOCTL_VIDEO_ENUM_MONITOR_PDO, I think. Very poorly documented. – Hans Passant Jan 28 '11 at 18:41
feedback

2 Answers

up vote 2 down vote accepted

Ok, so first you have to create a device context:

http://msdn.microsoft.com/en-us/library/dd183490(v=VS.85).aspx The following code will give you all monitors:

CreateDC(TEXT("DISPLAY"),NULL,NULL,NULL)

Then you would call the DeviceContext's EnumDisplayDevices which will have a pointer to a DISPLAY_DEVICE structure that contains information about the display device's settings. http://msdn.microsoft.com/en-us/library/dd162609(v=VS.85).aspx

Per MSDN:

To query all display devices in the current session, call this function in a loop, starting with iDevNum set to 0, and incrementing iDevNum until the function fails. To select all display devices in the desktop, use only the display devices that have the DISPLAY_DEVICE_ATTACHED_TO_DESKTOP flag in the DISPLAY_DEVICE structure.

To get information on the display adapter, call EnumDisplayDevices with lpDevice set to NULL. For example, DISPLAY_DEVICE.DeviceString contains the adapter name.

To obtain information on a display monitor, first call EnumDisplayDevices with lpDevice set to NULL. Then call EnumDisplayDevices with lpDevice set to DISPLAY_DEVICE.DeviceName from the first call to EnumDisplayDevices and with iDevNum set to zero. Then DISPLAY_DEVICE.DeviceString is the monitor name.

To query all monitor devices associated with an adapter, call EnumDisplayDevices in a loop with lpDevice set to the adapter name, iDevNum set to start at 0, and iDevNum set to increment until the function fails. Note that DISPLAY_DEVICE.DeviceName changes with each call for monitor information, so you must save the adapter name. The function fails when there are no more monitors for the adapter.

I am not a C++ programmer, however I had to code some stuff for display way back in the day, and I was just trying to help with the little that I remember. I am a bit rusty on WINAPI.

link|improve this answer
Please mark my posts as "asnwered" if they helped you solve your issue! :) Thanks! – bleepzter Jan 28 '11 at 18:42
thanks for the reply, but i already tried that (the function you describe is the first word in my question). it doesn't count disabled monitors. at least, the pywin32 port of that function does, and i can't see how the port would change its functionality. – Claudiu Jan 28 '11 at 19:41
I think he would mark it as answered if it helped, but it doesn't help – David Heffernan Jan 28 '11 at 21:47
I'd think that since the info is correct he shouldn't dock it points. It is not my fault that the API doesn't achieve what he wants. I am only quoting MSDN... He shouldn't dock me for the fact that the pywin32's implementation of the same code works better. :( – bleepzter Jan 28 '11 at 22:24
1  
@Claudiu - The first word in your question is EnumDisplayMonitors, it's not the same thing as EnumDisplayDevices. – Sertac Akyuz Jan 28 '11 at 23:38
show 3 more comments
feedback

Did you check the monitor display functions?

I am pretty sure that the MONITORINFOF_PRIMARY flag of the MONITORINFO structure specifies which monitor is the primary monitor. Any monitor that has MONITORINFO or MONITORINFOEX structure is a "useful" monitor.

http://msdn.microsoft.com/en-us/library/dd145065(v=VS.85).aspx

As far as what monitors are available this link allows you to check for those:
Get Monitor Info: http://msdn.microsoft.com/en-us/library/dd144942(v=VS.85).aspx
Enum Display Devices: http://msdn.microsoft.com/en-us/library/dd162609(VS.85).aspx
Display Device Structure: http://msdn.microsoft.com/en-us/library/dd183569(v=VS.85).aspx

The Display Device Structure has a "DISPLAY_DEVICE_ACTIVE" flag which indicates if the device is active.

link|improve this answer
It looks like you can not include disabled monitors in EnumDisplayMonitors, so I'm still not sure after reading this answer, how you obtain the list that includes the displayed items, and thus, how you would check the structure that comes back, for the active flag. I'm guessing you're saying that EnumDisplayDevices should include even inactive devices? – Warren P Jan 28 '11 at 18:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.