tags:

views:

60

answers:

1

I need to do it programatically similar to Spy++. All I need is the one WM_COMMAND message returned so I can retrieve the Command ID. Does anyone have source on this? I really appreciate it...

I am currently using Delphi...

+2  A: 

Not a trivial job; you need global hooks. Read about how Spy++ does it here. See a Delphi implementation example here.

Sertac Akyuz