Search found 8 matches

by vito49
Tuesday 2nd February 2021 10:25am
Forum: Beginners
Topic: what about the classes?
Replies: 10
Views: 8671

what about the classes?

Hello guys, I wonder why there are "classes" to use ... but I have no clue why they are used and how to use them.
Sorry, I'm beginner (not in time, but in apps I already composed)
And I'm not English, so please bare that in mind .... :) :)
Thanks
by vito49
Sunday 27th December 2020 9:16am
Forum: General
Topic: keyboard alllways activ, even not programmed
Replies: 13
Views: 9060

Re: keyboard alllways activ, even not programmed

Hello all, I feel a bit stupid about this topic, because I told you that I used key.backspase but I found out I wasn't, in fact I wanted the key.SPACE and of course I was pushing the wrong button all the time ... So I changed it into: Public Sub Form_KeyPress() If Button3.Visible = True Then If Key....
by vito49
Monday 21st December 2020 7:18pm
Forum: General
Topic: keyboard alllways activ, even not programmed
Replies: 13
Views: 9060

Re: keyboard alllways activ, even not programmed

The behaviour you describe is the behaviour of the Tab button. changing focus. If your Gambas program has no code to do anything with backspace then there must be a shortcut set in your linux doing it. Check your programs menu shortcuts. check XFCE4 keyboard settings. Bruce, at the moment there is ...
by vito49
Monday 21st December 2020 12:53pm
Forum: General
Topic: keyboard alllways activ, even not programmed
Replies: 13
Views: 9060

Re: keyboard alllways activ, even not programmed

ocoquet wrote: Monday 21st December 2020 10:50am Are you sure than the backspace is not a shortcut in your linux desktop ?????
I searched for these shortcuts but am unable to find them on my XFCE Manjaro ....
Do you have any idea where I can find them?
Thanks in advance.
by vito49
Monday 21st December 2020 11:38am
Forum: General
Topic: keyboard alllways activ, even not programmed
Replies: 13
Views: 9060

Re: keyboard alllways activ, even not programmed

Can you post a copy of your program (or an extract if you prefer) as that will enable us to check it out straight away (rather than us having to write our own test code). Mmmm ... I don't know if I don't slap in someones face with it, it's a kinky program about a dominant and her ... her online sub...
by vito49
Monday 21st December 2020 9:54am
Forum: General
Topic: keyboard alllways activ, even not programmed
Replies: 13
Views: 9060

keyboard alllways activ, even not programmed

Hello, the keyboard problem was solved but I have a new problem with the keyboard even it is not in the code. It's strange but my program reacts every time I press the backspace button ... let's say I start the application and everything works normal, I press the keyboord backspace and the focus jum...
by vito49
Sunday 20th December 2020 2:53pm
Forum: General
Topic: new - keybord does not work anymore
Replies: 3
Views: 2961

Re: new - keybord does not work anymore

Public Sub Form_KeyPress() 'Form1_KeyPress() If Key.Code = Key.F5 PictureBox1.Picture = Picture[User.Home &/ "zzz/zzz/start.jpg"] 'Picture[("/home/zzz/zzz/" & "start.jpg")] Message("well done") Endif End Hi, that was the error. thanks to you all.
by vito49
Sunday 20th December 2020 9:43am
Forum: General
Topic: new - keybord does not work anymore
Replies: 3
Views: 2961

new - keybord does not work anymore

Hello all, I'm more or less new to Gambas, I was out for about a year, but picked up Gambas again to compose small programs ... just to keep the brain cells going, I'm 71 :D And now I have a small problem, I can't program the keyboard anymore. The code: Public Sub Form1_KeyPress() If Key.Code = Key....