How can you determine that the left mouse button is pressed (function MLeftDown always returns .F.) ?
How can you determine that the left mouse button is pressed (function MLeftDown always returns .F.) ?
oControl:bLClicked := { | nRow, nCol, nFlags | MsgInfo( "left mouse pressed" ) }
or oWnd or oDlg instead of oControl
bRClicked - handles the event of pressing the left mouse button. But I'm interested in the status of this button when you move the mouse cursor across several controls.
Each of these controls has its bMMoved in which the function is called. If left mouse button pressed, the function is executed
Thanks, Antonio !