0

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?

aspiring
  • 1,557
  • 2
  • 20
  • 43
Rokr_13
  • 95
  • 1
  • 1
  • 6

1 Answers1

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