Re: [Gambas-user] Does really nobody have an idea?

2011-09-08 Thread Andreas Fröhlke
Sure, i forgot that ther may be containers :) -Ursprüngliche Nachricht- Von: Fabien Bodard [mailto:gambas...@gmail.com] Gesendet: Mittwoch, 7. September 2011 19:12 An: i...@eilert-sprachen.de; mailing list for gambas users Betreff: Re: [Gambas-user] Does really nobody have an idea

Re: [Gambas-user] Does really nobody have an idea?

2011-09-08 Thread Benoît Minisini
Aah sure - because of the containers... I tried it, and it runs well, but I cannot catch action on the scroll bars of the treeview - and nothing comes from the menu and from the program window as well. But it wouldn't disturb so much, so I think, this is a pretty good solution, thank

Re: [Gambas-user] Does really nobody have an idea?

2011-09-08 Thread Rolf-Werner Eilert
, GotFocus, LostFocus, ... Regards A.Fröhlke -Ursprüngliche Nachricht- Von: Rolf-Werner Eilert [mailto:eilert-sprac...@t-online.de] Gesendet: Mittwoch, 7. September 2011 08:34 An: gambas-user@lists.sourceforge.net Betreff: Re: [Gambas-user] Does really nobody have an idea? Thank you Jorge

Re: [Gambas-user] Does really nobody have an idea?

2011-09-08 Thread Rolf-Werner Eilert
Am 08.09.2011 17:33, schrieb Benoît Minisini: Aah sure - because of the containers... I tried it, and it runs well, but I cannot catch action on the scroll bars of the treeview - and nothing comes from the menu and from the program window as well. But it wouldn't disturb so much, so I

Re: [Gambas-user] Does really nobody have an idea?

2011-09-08 Thread Rolf-Werner Eilert
Am 08.09.2011 17:33, schrieb Benoît Minisini: Aah sure - because of the containers... I tried it, and it runs well, but I cannot catch action on the scroll bars of the treeview - and nothing comes from the menu and from the program window as well. But it wouldn't disturb so much, so I

Re: [Gambas-user] Does really nobody have an idea?

2011-09-08 Thread Benoît Minisini
I had another idea : you can create a timer that checks the mouse absolute coordinates every 10 seconds (for example). If the mouse does not move during six timer ticks (so one minute), you can assume that the user is not doing anything. Of course he may use the keyboard only. But

Re: [Gambas-user] Does really nobody have an idea?

2011-09-07 Thread Rolf-Werner Eilert
Thank you Jorge, at a first glance this looks promising. I'll try to understand it when I've got some more time, maybe this afternoon or so... Regards Rolf Am 06.09.2011 20:35, schrieb Jorge Carrión: Here there is a class that do exactly what you want (I hope).

Re: [Gambas-user] Does really nobody have an idea?

2011-09-07 Thread Rolf-Werner Eilert
-Ursprüngliche Nachricht- Von: Rolf-Werner Eilert [mailto:eilert-sprac...@t-online.de] Gesendet: Mittwoch, 7. September 2011 08:34 An: gambas-user@lists.sourceforge.net Betreff: Re: [Gambas-user] Does really nobody have an idea? Thank you Jorge, at a first glance this looks promising

Re: [Gambas-user] Does really nobody have an idea?

2011-09-07 Thread Fabien Bodard
:34 An: gambas-user@lists.sourceforge.net Betreff: Re: [Gambas-user] Does really nobody have an idea? Thank you Jorge, at a first glance this looks promising. I'll try to understand it when I've got some more time, maybe this afternoon or so... Regards Rolf Am 06.09.2011 20:35, schrieb

Re: [Gambas-user] Does really nobody have an idea?

2011-09-07 Thread Fabien Bodard
-Ursprüngliche Nachricht- Von: Rolf-Werner Eilert [mailto:eilert-sprac...@t-online.de] Gesendet: Mittwoch, 7. September 2011 08:34 An: gambas-user@lists.sourceforge.net Betreff: Re: [Gambas-user] Does really nobody have an idea? Thank you Jorge, at a first glance this looks promising. I'll try

[Gambas-user] Does really nobody have an idea?

2011-09-06 Thread Rolf-Werner Eilert
I sent this yesterday, but nobody seems to know - or is the question too stupid to be answered? :-) As the mailing list doesn't accept a repost, I put it under a new Re. Hope you aren't annoyed, guys... Hi folks, Is there a general function that counts or registers mouse and keyboard events

Re: [Gambas-user] Does really nobody have an idea?

2011-09-06 Thread Stephen Bungay
On 09/06/2011 09:38 AM, Rolf-Werner Eilert wrote: I sent this yesterday, but nobody seems to know - or is the question too stupid to be answered? :-) As the mailing list doesn't accept a repost, I put it under a new Re. Hope you aren't annoyed, guys... Hi folks, Is there a general

Re: [Gambas-user] Does really nobody have an idea?

2011-09-06 Thread Fabien Bodard
first answer for steve Public Sub Slider1_MouseUp() Print Mouse is released End -- Special Offer -- Download ArcSight Logger for FREE! Finally, a world-class log management solution at an even better price-free! And

Re: [Gambas-user] Does really nobody have an idea?

2011-09-06 Thread Fabien Bodard
good question rolf :/ 2011/9/6 Fabien Bodard gambas...@gmail.com: first answer for steve Public Sub Slider1_MouseUp()  Print Mouse is released End -- Fabien Bodard -- Special Offer -- Download ArcSight Logger

Re: [Gambas-user] Does really nobody have an idea?

2011-09-06 Thread Dag-Jarle Johansen
Hi, I had to write something like that in VB for QM. Even though the effort might be overwhelming, I would do some thing like this: make a global object in some module, f.eks. m.module public GetMe as object in the same module you save or do anything f.eks puclic sub WriteLogg() 2011/9/6

Re: [Gambas-user] Does really nobody have an idea?

2011-09-06 Thread Dag-Jarle Johansen
Something happened public sub WriteLogg() print GetMe.name (and or other options) end And the heavy stuff is here: for every Object you want to control, you will have to: private sub xxx_control_click() GetMet=xxx_control m.WriteLogg Alternate WriteLogg as function public

Re: [Gambas-user] Does really nobody have an idea?

2011-09-06 Thread Rolf-Werner Eilert
Thanks for your idea, Dag-Jarle, but isn't this effort exactly what I would like to avoid? I guess the whole thing depends on the question of how QT or GTK handle the events of the controls within a window/application. I cannot imagine that the controls are accessed by the GUI (X) directly.

Re: [Gambas-user] Does really nobody have an idea?

2011-09-06 Thread Jorge Carrión
Here there is a class that do exactly what you want (I hope). http://www.gambas-es.org/download.php?id=82 I included a little proyect with example. Hope it'll be usefull. Regards. 2011/9/6 Rolf-Werner Eilert eilert-sprac...@t-online.de Thanks for your idea, Dag-Jarle, but isn't this effort

Re: [Gambas-user] Does really nobody have an idea?

2011-09-06 Thread Dag-Jarle Johansen
Hi Rolf-Werner, sorry, I thought just that. I Benoit have no better solution, I could write you a little parser; takes just one second, and the form(s) is/are up to date, and you can define in a INI which events to monitor. This is a quick and dirty solution, but surely works, and you have no

Re: [Gambas-user] Does really nobody have an idea?

2011-09-06 Thread Benoît Minisini
I sent this yesterday, but nobody seems to know - or is the question too stupid to be answered? :-) As the mailing list doesn't accept a repost, I put it under a new Re. Hope you aren't annoyed, guys... Hi folks, Is there a general function that counts or registers mouse and keyboard

Re: [Gambas-user] Does really nobody have an idea?

2011-09-06 Thread Stephen Bungay
On 09/06/2011 10:20 AM, Fabien Bodard wrote: first answer for steve Public Sub Slider1_MouseUp() Print Mouse is released End -- Special Offer -- Download ArcSight Logger for FREE! Finally, a world-class log

Re: [Gambas-user] Does really nobody have an idea?

2011-09-06 Thread Benoît Minisini
On 09/06/2011 10:20 AM, Fabien Bodard wrote: first answer for steve Public Sub Slider1_MouseUp() Print Mouse is released End - - Special Offer -- Download ArcSight Logger for FREE! Finally, a

Re: [Gambas-user] Does really nobody have an idea?

2011-09-06 Thread Stephen Bungay
On 09/06/2011 08:29 PM, Benoît Minisini wrote: On 09/06/2011 10:20 AM, Fabien Bodard wrote: first answer for steve Public Sub Slider1_MouseUp() Print Mouse is released End - - Special Offer -- Download

Re: [Gambas-user] Does really nobody have an idea?

2011-09-06 Thread Stephen Bungay
On 09/06/2011 08:29 PM, Benoît Minisini wrote: On 09/06/2011 10:20 AM, Fabien Bodard wrote: first answer for steve Public Sub Slider1_MouseUp() Print Mouse is released End - - Special Offer -- Download

Re: [Gambas-user] Does really nobody have an idea?

2011-09-06 Thread Benoît Minisini
Further to the earlier reply... I have tested the following events for Slider under GTK+ DblClick: Does not fire Enter: Does not fire GotFocus: Fires as expected Leave: Does not fire LostFocus: Fires as expected MouseDown: Does not fire MouseUp: Does not fire MouseWheel: Moves the

[Gambas-user] Does really nobody have an idea???

2009-01-12 Thread Rolf-Werner Eilert
I've been waiting for some hints about reading from a TableView, was the question really so stupid? :-) (Please take another look at my mail from last week.) At least I'd expected some teacherly look at this page or try reading this better... Really no idea? Rolf

Re: [Gambas-user] Does really nobody have an idea???

2009-01-12 Thread Doriano Blengino
Rolf-Werner Eilert ha scritto: I've been waiting for some hints about reading from a TableView, was the question really so stupid? :-) (Please take another look at my mail from last week.) I cannot find your post - perhaps sourceforge is eating messages again... I also sended al least a