Re: [Gambas-user] Mouse move ...

2017-03-21 Thread Riccardo
Thank you, Matti and Gianluigi, that worked. -- View this message in context: http://gambas.8142.n7.nabble.com/Mouse-move-tp58655p58662.html Sent from the gambas-user mailing list archive at Nabble.com. -- Check out th

Re: [Gambas-user] Mouse move ...

2017-03-21 Thread Charlie
Riccardo wrote > Is there a way to attach (or modify) the mouse move event to an object > such that it is activated without the left mouse button being pressed? I interpret this to mean that an object (e.g. a panel) should know if the mouse has 'Entered' or 'Left' it. Have a look at the attached

Re: [Gambas-user] Mouse move ...

2017-03-21 Thread Gianluigi
You have to change in True the Traking property. Regards Gianluigi 2017-03-21 11:16 GMT+01:00 Riccardo : > Is there a way to attach (or modify) the mouse move event to an object such > that it is activated without the left mouse button being pressed? I want to > monitor the X,Y position of the m

Re: [Gambas-user] Mouse move ...

2017-03-21 Thread Matti
Set 'Tracking' = True. Then: Public Sub Form_MouseMove() Print Mouse.X, Mouse.Y End Am 21.03.2017 um 11:16 schrieb Riccardo: > Is there a way to attach (or modify) the mouse move event to an object such > that it is activated without the left mouse button being pressed? I want to > monitor t

[Gambas-user] Mouse move ...

2017-03-21 Thread Riccardo
Is there a way to attach (or modify) the mouse move event to an object such that it is activated without the left mouse button being pressed? I want to monitor the X,Y position of the mouse cursor at all times on the main form... cheers! -- View this message in context: http://gambas.8142.n7.n