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?
Asked
Active
Viewed 525 times
0
-
need more clarity.. please provide more details.. – Rajesh Subramanian Feb 12 '13 at 09:33
-
Are you automating PowerPoint or is it running standalone? – stuartd Feb 12 '13 at 09:43
-
Do you specifically need to monitor dialogs or do you need to respond to save/open events in PowerPoint? – Steve Rindsberg Feb 12 '13 at 15:29
1 Answers
0
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.

Massimiliano Peluso
- 26,379
- 6
- 61
- 70