Re: [Gambas-user] Gambas, Lubuntu 15.04, problem with language in the IDE.

2015-05-04 Thread Francisco Martinez
Hello. I found this solution: http://askubuntu.com/questions/588676/gambas3-in-english Our administrator found: http://askubuntu.com/questions/311767/why-is-overriding-the-lang-environment-variable-not-changing-the-language-for-me I have temporarily added this line to the .profile export

Re: [Gambas-user] R: How to know is my Form activated or not?

2015-05-04 Thread abbat81
Dim dw As DesktopWindow For Each dw In Desktop.Windows Print _ dw.VisibleName Next I got next: _ _ _ _ _ _ _ _ _ _ _ _ -- View this message in context: http://gambas.8142.n7.nabble.com/How-to-know-is-my-Form-activated-or-not-tp51426p51453.html Sent from the

Re: [Gambas-user] R: How to know is my Form activated or not?

2015-05-04 Thread ML
Abbat, I don't know if you got my reply to the list. I'd go like this instead (this is code to add to the form(s) you want to check): * Private $bActive As Boolean = False** 'This private form variable will hold the form's state ** Public Property Read IsActive As Boolean 'This

Re: [Gambas-user] Buffer Monitoring

2015-05-04 Thread Charlie
I tried the code below on Linux Mint 17.1 Cinnamon. You will need a Form with a Timer added. It only tracks the mouse position but I was able to open Terminal, Calculator and other programs and even if Gambas did not have focus the position of the mouse was still being Printed to the Gambas

Re: [Gambas-user] R: How to know is my Form activated or not?

2015-05-04 Thread Ru Vuott
Activating gb.desktop: Public Sub Form_Open() Me.Caption = Novum Nomen End Public Sub Button1_Click() Dim dw As DesktopWindow For Each dw In Desktop.Windows Print _ dw.VisibleName Next End