I am trying to grab the friendly name for the monitors on my system. I am using C#.
I have tried Screen
, which just gives me //./DisplayXX
. I have also tried both Win32_DesktopMonitor
and EnumDisplayDevices
, they all give me variations of //./DisplayXX
OR Generic Monitor
, whereas I know my displays names are SyncMaster
and SM2333T
.
Now Windows knows what these monitors are, displays them in the Devices and Printers windows with the correct names, and also in the dialog for setting location and resolution.
Where can I grab these names from? I have looked in the registry and cant seem to find them, so any help will be great.
SOLUTION:
The issue I had was when calling EnumDisplayDevices
the second time I was setting iDevNum
to id again, which meant I was trying to grab data from the wrong place, I then replaced this with 0, and it works perfectly, see below for the code.
var device = new DISPLAY_DEVICE();
device.cb = Marshal.SizeOf(device);
try
{
for (uint id = 0; EnumDisplayDevices(null, id, ref device, 0); id++)
{
Console.WriteLine(String.Format("{0}, {1}, {2}, {3}, {4}, {5}", id, device.DeviceName, device.DeviceString, device.StateFlags, device.DeviceID, device.DeviceKey));
Console.WriteLine();
device.cb = Marshal.SizeOf(device);
EnumDisplayDevices(device.DeviceName, 0, ref device, 0);
Console.WriteLine(String.Format("{0}, {1}, {2}, {3}, {4}, {5}", id, device.DeviceName, device.DeviceString, device.StateFlags, device.DeviceID, device.DeviceKey));
device.cb = Marshal.SizeOf(device);
device.cb = Marshal.SizeOf(device);
return;
}
}
}
catch (Exception ex)
{
Console.WriteLine(String.Format("{0}", ex.ToString()));
}
After you get a
DisplayDevice.DeviceName
like//./DisplayX
fromEnumDisplayDevices
, you are supposed to call 'EnumDisplayDevices' a second time, this time providing the 'DisplayDevice.DeviceName' that you got from the previous call aslpDevice
, and '0' asiDevNum
. Then you'll have the monitor name inDisplayDevice.DeviceString
.