Subj : Re: double clicks (mouse) To : borland.public.cpp.borlandcpp From : wmd Date : Wed Dec 15 2004 03:57 pm please puts all code here. "Jack Sawatzky" wrote in message news:41bfb923$1@newsgroups.borland.com... > Single clicks are detected, but not double clicks. What am I doing wrong? > > > WinMain (... > wndclass.style = CS_HREDRAW | CS_VREDRAW | CS_DBLCLKS; > ... > SetDoubleClickTime(700); > > > WndProc (... > case WM_LBUTTONDBLCLK : > MessageBox(hwnd,"DoubleLeft","Button", MB_OK ); > return 0; > > > > Thanks. .