mike
mike

Reputation: 5055

Determine underlying calls triggered by Windows GUI action

This is a follow-up question to one I asked on superuser.com. How can I trace the consequences of GUI actions. Is there some kind of low level event log in windows?

Example If the user double-clicks on <name>.pdf, the consequences are:

at least I assume that is what happens. That are the consequences I want to track in order to reproduce them in code.

Upvotes: 1

Views: 66

Answers (1)

David Heffernan
David Heffernan

Reputation: 613302

There's no log that you can examine in order to reproduce events and behaviour of the shell.

In this case, a double click results in the default verb being applied to the selected shell item. In code you are provided with the ShellExecuteEx function to do that.

Upvotes: 1

Related Questions