Trap WM_LBUTTONDOWN / UP messages on Button

  • Thread starter Thread starter Alain Dekker
  • Start date Start date
A

Alain Dekker

What is the best way to peek at the message queue and tell when a specific
control has seen one of the above messages?

Thanks,
Alain
 
What is the best way to peek at the message queue and tell when a specific
control has seen one of the above messages?

Subclass (i.e., derive from) the control and override the WndProc() method.
 
Back
Top