RiverPlate
Programmer
FPW Friends !
Is there a right way to detect mouse click or double click in a Browse window ?
Thanks !
RP
Is there a right way to detect mouse click or double click in a Browse window ?
Thanks !
RP
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
ON KEY LABEL LeftMouse KEYBOARD('{ENTER}')
ON KEY LABEL leftmouse DO mhandler
STORE SECONDS() TO m.m_timeout
STORE .F. TO doubleclicked
_DBLCLICK = .25
PROCEDURE mhandler
IF SECONDS() < m.m_timeout
=INKEY(0, 'HM')
doubleclicked = .T.
KEYBOARD("{ENTER}")
ELSE
STORE SECONDS()+_DBLCLICK TO m.m_timeout
ENDIF ( SECONDS() < m.m_timeout )
RETURN