Is there some event or notification I can receive or hook each time an external LCD monitor is plugged in or unplugged from a laptop running Windows 7?

The laptop detects this and switches my display to the external screen and back with certain kinds of resizing or repositioning but is this exposed by the operating system so that applications can provide a handler, attach a script, etc?

If not, is there a registry setting or API I could poll from time to time?

(I prefer programming C + Win32 API)

UPDATE

Mike's answer below, WM_DEVICECHANGE led me to RegisterDeviceNotification(), but I'm struggling to implement it so far...

UPDATE 2

This question has been asked with different wording a couple of times, but not fully answered yet in my opinion:

link|improve this question

59% accept rate
feedback

1 Answer

You can try WM_DEVICECHANGE. If that doesn't do the trick, run your window and attach Spy++ to it which will log all the window messages it receives. Then plug your monitor in and check if you received any messages.

Alternatively you can poll GetSystemMetrics() with SM_CMONITORS.

link|improve this answer
Thanks Mike. WM_DEVICECHANGE can't do it on its own since it only tells you that something was added or removed and nothing else. But its docs directed me to RegisterDeviceNotification() which seems to be the one. Not easy to understand though and all the examples I can find are for USB but still trying... – hippietrail May 13 '11 at 3:45
feedback

Your Answer

 
or
required, but never shown

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