I'm trying to check for dialog box open and close events in powerpoint 2010 (example: Saveas dialog box) using C#.net. Is there any other way to find out the events?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You could use the windows messages to understand when a window is open. have a look here . This should point you to the right direction WM_SHOWWINDOW message (Windows) Sent to a window when the window is about to be hidden or shown. A window receives this message through its WindowProc function. |
|||
|
|