FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour How to detect mouse move
Posts: 6984
Joined: Fri Oct 07, 2005 07:07 PM
How to detect mouse move
Posted: Thu Nov 08, 2012 10:54 AM
I do have a window with several controls.
What is the way to catch mouse move on windows level.
I would like to open a charmbar if you move to the right border.
Do I have to detect mouse move for each control or is there another way to get oWnd:bMMoved.
Thanks in advance
Otto

Code (fw): Select all Collapse
::oGrpView:bMMoved    := { |y,x | msginfo("y" + str(y) + "---" + "x" + str(x) )} 
::oBar:bMMoved    := { |y,x | msginfo("oBar y" + str(y) + "---" + "x" + str(x) )}


Continue the discussion