: : Thank you!
: : But this function doesn't have X,Y coordinates as parameters. If I only want to detect the double click to certain area, what shall I do?
: :
: :
: Do you mean some arbitrary X,Y position within the form or is the mouse expected to be over a label or picture? If the latter, that's easier, just trap the OnDblClick message of the picture or label. If you're just out in the client area of the form, look up the wm_NCHitTest or cm_NCHitTest messages in the Windoze API help that comes with Delphi. Those return screen coordinates, so you'll have to convert to form coordinates with the ScreenToClient API function. It's much easier to use a label or picture. - HTH
:
You could also try to trap the WM_LBUTTONDBLCLK message. This could also be used to respond to right double clicks, or shift/control double clicks. The message also contains the screen coordinates.