According to MSDN, the event for the left double click is WM_LBUTTONDBLCLK, but my program doesn't seem to respond to any code handling this message. All other messages work fine...
This is a discussion on Double Click within the Windows Programming forums, part of the Platform Specific Boards category; According to MSDN, the event for the left double click is WM_LBUTTONDBLCLK, but my program doesn't seem to respond to ...
According to MSDN, the event for the left double click is WM_LBUTTONDBLCLK, but my program doesn't seem to respond to any code handling this message. All other messages work fine...
MSVC++ 6.0
Make sure you set the CS_DBLCLKS style bit when you register the window class (see WNDCLASSEX style parameter).
CProgramming FAQ
Caution: this person may be a carrier of the misinformation virus.
Excellent stuff. Thanks...
MSVC++ 6.0