vote up 2 vote down star

I have an app which uses a keyboard hook procedure in a library. The wParam in the hook for one message is 255 which we think is "(reserved / OEMClear)". I'd like to work out the source of this message as it causes my application to crash in the library, and given it shouldn't be happening it would be good to identify it. The message comes in repeatedly on only one PC we have - other computers don't see the message at all.

So, is there a way to trace the source of a message sent to a window please, or all those on the system?

flag

The final solution for this, unfortunately, was a sticking plaster. I added another hook in my app which looks for this wParam value and doesn't call down the hook chain if matched. I'm making it PC specific (registry) but there seems to be something wrong with that PC. – mj2008 Jun 10 at 10:36

4 Answers

vote up 3 vote down check

There is no built-in way to find out who sent the window message, not even win32k keeps track of this; you might be able to find it out with a kernel debugger and a conditional breakpoint.

However, I would argue that you don't really need this information; you need to make your app properly handle any message sent to it.

link|flag
I'd half agree - our purpose here is to find the cause, then we can judge the seriousness and handle it appropriately. I don't want to just stick a plaster over it in case it bites later, particularly as this is a commercial library that the fault fails in. – mj2008 May 26 at 17:11
1  
@mj2008: If you're deploying this to machines you don't fully control, you're going to get bitten; lots of badly-written apps send strange messages to all windows in attempts to do stuff and you have to deal with it elegantly. Just capture the messages you're interested in, and pass the rest along to the next hook in the chain. – Paul Betts May 26 at 18:05
vote up 0 vote down

Im not sure if this does what you want it to but have a look at Process Monitor by sysinternals.

http:// technet.microsoft.com/en-us/sysinternals/bb896645.aspx

It shows everything that happens to a process so i assume it catches messages as well. The site was down at time of writing so i couldnt check.

link|flag
Thanks - it doesn't appear to trace messages, but it lead me to msdn.microsoft.com/en-us/library/… which details the debug options in the debug build. But nothing there for message tracing either! – mj2008 May 26 at 15:09
I don't see windows messages as an 'operation' in Process Monitor. – Aardvark May 26 at 15:11
vote up 0 vote down

(I originally suggested using Spy++ or winspector, but they do not hook into the sending of messages. That doesn't even make sense! A window receives messages but they don't send them, a thread does that. I'll leave my suggestion about using a debugger.)

Sometimes debugging can help. Try downloading the windows PDB files and setting a breakpoint that hits only when one of these messages occur. Looking at the call stack at that point can often shed some light on why things are happening. Posted messages and messages send from other processes will foil this approach.

link|flag
I looked at Winspector first (used it for years) but it doesn't show the source. The debugger may be the only choice... – mj2008 May 26 at 17:12
vote up 1 vote down

There is no built-in way to find out who sent the window message

Of course there is. But it's advanced Win32 programming (by hooking CSRSS)

link|flag
CSRSS doesn't handle window messages, win32k does in kernel mode. – Paul Betts May 29 at 15:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.