how to capture windows events?
mfc class name used for event listening?
how to overide and overload class methods
very urgently needed
please help
Printable View
how to capture windows events?
mfc class name used for event listening?
how to overide and overload class methods
very urgently needed
please help
What windows events do you want to capture?
What does ik and jj stand for?
To capture windows messages that have not already been converted to visual basic intrinsic events (such as Form_Move) you need to subclass the form, intercept the Window messages, translate the parameters you are passed to a more meaningful style, raise the event and then decide whether or not you want to pass on the message to the default window handler.
This is how the ApiWindow class events work.
Hope this helps,
Duncan