M Miha Markic Oct 9, 2003 #2 Hi, You should create a class that implements IMessageFilter interface. Miha
M Mattias Sjögren Oct 9, 2003 #3 How can I capture Windows OS events (messages)? Click to expand... Override the WndProc method of the Control the messages are sent to. Mattias
How can I capture Windows OS events (messages)? Click to expand... Override the WndProc method of the Control the messages are sent to. Mattias
M Mr.Tickle Oct 9, 2003 #4 protected override void WndProf (ref System.Windows.Forms.Message m) { switch (m.Msg) { // blah } base.WndProc(ref m); }
protected override void WndProf (ref System.Windows.Forms.Message m) { switch (m.Msg) { // blah } base.WndProc(ref m); }