-
I'm using the Spyworks subclassing control, and I need to know how to cancel the default windows message and replace it with my own routine. I can subclass the window and perform my own pre-default messages just fine, but I can't seem to cancel the default windows event from happening after it.
Any help would be greatly appreciated :)
-Jordan
-
-
Generally when you subclass..
you findout that, the message is for this particular
window - then you process it after which you send
this message to the old window procedure.
Now when you want that particular message to be invisible
to the old procedure , don't send it to it after you
process the message.
but It is quite dangerous to swallow critical messages
like that. Be your own judge.
-