Search found 1114 matches

by cogier
Friday 28th July 2023 2:01pm
Forum: General
Topic: [SOLVED] take over system focus
Replies: 16
Views: 3630

Re: take over system focus

This may help.

Public Sub Form_Open()

  Wait 5
  Shell "notify-send IMPORTANT! 'IMPORTANT message'"
  Message("IMPORTANT\n\nImportant message", "OK")

End
by cogier
Tuesday 18th July 2023 9:37am
Forum: General
Topic: Lots of Timers Question
Replies: 4
Views: 1122

Re: Lots of Timers Question

You are asking a lot of questions, but to help we would need more details. What Delay are you putting on your timers? What are the timers doing, if they are working out the nth Prime Number it may well be slow? Gambas only uses one of your processor cores to run unless you use Task as Bruce has poin...
by cogier
Friday 14th July 2023 8:59am
Forum: General
Topic: [Sloved] Migrating from 3.15 to 3.18 Problems
Replies: 20
Views: 2832

Re: Migrating from 3.15 to 3.18 Problems

This code might help. Public Sub Form_KeyPress() Select Case Key.Text Case "a" ''lower case A frmbackground.Workspace1.CloseAll frmbackground.Workspace1.Add(FrmSignOn, 0) Case "c" ''lower case C frmPriceCheck_1.labCallingForm.Text = "frmSignedOff" frmbackground.Workspac...
by cogier
Thursday 13th July 2023 3:38pm
Forum: General
Topic: [Sloved] Migrating from 3.15 to 3.18 Problems
Replies: 20
Views: 2832

Re: Migrating from 3.15 to 3.18 Problems

I have done some testing and all seems to work as I would expect. Can you post some example code, so I/we can see what you are trying to do?
by cogier
Sunday 9th July 2023 7:37pm
Forum: General
Topic: [Sloved] Migrating from 3.15 to 3.18 Problems
Replies: 20
Views: 2832

Re: Migrating from 3.15 to 3.18 Problems

Have you tried recompiling your program(s)? Project>Compile All
by cogier
Thursday 6th July 2023 6:11pm
Forum: General
Topic: Gambas 3 and Touchscreen app
Replies: 20
Views: 3280

Re: Gambas 3 and Touchscreen app

Have you tried to install with apt install gb.gtk3.webview?

Are you developing on a different version of Gambas to the ones installed on the Debian machines?
by cogier
Thursday 6th July 2023 4:19pm
Forum: General
Topic: Gambas 3 and Touchscreen app
Replies: 20
Views: 3280

Re: Gambas 3 and Touchscreen app

You can easily test your original program by changing the Components with Projects>Properties>Components.
by cogier
Thursday 6th July 2023 2:19pm
Forum: General
Topic: Gambas 3 and Touchscreen app
Replies: 20
Views: 3280

Re: Gambas 3 and Touchscreen app

I have run Gambas programs on a touch screen with no issues. Try changing gb.gui to gb.gui.qt and see if that helps.
by cogier
Monday 26th June 2023 4:15pm
Forum: Lounge
Topic: Funny stuff
Replies: 7
Views: 6507

Re: Funny stuff

Very good!
by cogier
Thursday 22nd June 2023 9:06am
Forum: Beginners
Topic: Cannot get it running on Debian 12
Replies: 10
Views: 2166

Re: Cannot get it running on Debian 12

That sounds better but be aware that the Ubuntu version of Gambas has its issues. I suggest you use the ppa to install Gambas. The following command will do it all for you. sudo add-apt-repository -y ppa:gambas-team/gambas3 && sudo apt-get update && sudo apt-get -y install gambas3