Search found 1106 matches

by cogier
Thursday 5th October 2023 10:47am
Forum: Beginners
Topic: Export an old Gambas app to a new system
Replies: 4
Views: 3033

Re: Export an old Gambas app to a new system

Like vuott I managed to get the program to run with minor changes on Linux Mint 21.2 with Gambas 3.18.4 https://www.cogier.com/gambas/Neco1.png There are a lot of unused functions and variables, this is only one page! https://www.cogier.com/gambas/Neco2.png I think the error you are getting is to do...
by cogier
Sunday 1st October 2023 12:42pm
Forum: General
Topic: [Solved] Sound advise
Replies: 20
Views: 8431

Re: Sound advise

Dim SpeakerData As String = Null SpeakerData = "speaker-test -t sine -f 1000 -l 1 & sleep .2 && kill -9 $!" Shell SpeakerData There is no need for = Null, you could have just followed the equal sign with "speaker - test -t.....". Better still: - Shell "speaker-t...
by cogier
Sunday 1st October 2023 12:07pm
Forum: Beginners
Topic: Problems with Containers
Replies: 4
Views: 3645

Re: Problems with Containers

There is definitely an art to getting the GUI items the way you want, but it's worth the effort. Have a look at ExpandingForms on the Farm or available here . It will give you the basics. Regarding your present issue, I think what you are looking for is below. Be careful with the use of AutoResize ....
by cogier
Thursday 28th September 2023 10:59am
Forum: General
Topic: Slider query
Replies: 2
Views: 1472

Re: Slider query

Thanks, Bruce. I'll check it out.
by cogier
Wednesday 27th September 2023 2:33pm
Forum: General
Topic: Slider query
Replies: 2
Views: 1472

Slider query

What is the difference between PageStep and Step on a Slider?
by cogier
Sunday 24th September 2023 8:03am
Forum: The Gambas IDE
Topic: How to solve gambas code editor FONT BLURRINESS on a 4K display with 200 % monitor scale ?
Replies: 5
Views: 4405

Re: How to solve gambas code editor FONT BLURRINESS on a 4K display with 200 % monitor scale ?

Looks like your in front of the rest of us with a 4K monitor!
Looking at the picture I suggest you try a different font. I would change them all to Ubuntu to start with.
You could also look at the Linux Mint forums to see if anybody else has similar issues with 4K.
by cogier
Wednesday 20th September 2023 1:02pm
Forum: General
Topic: [Solved] Get Linux version and name
Replies: 9
Views: 3573

Re: Get Linux version and name

I thought that this was an interesting question. As a result, I discovered that all distros that use Systemd , and that is most distros now, have a useful command called hostnamectl . This produces quite a bit of interesting information. The following code will return the information you are looking...
by cogier
Tuesday 19th September 2023 1:08pm
Forum: The Gambas IDE
Topic: Formatting code with Ctrl+Shift+F has changed to Ctrl+Shift+T
Replies: 2
Views: 3254

Re: Formatting code with Ctrl+Shift+F has changed to Ctrl+Shift+T

That's good to know as I also use that shortcut. I got caught out when he changed Project properties shortcut from [Ctrl]+p to [Ctrl]+i.
by cogier
Saturday 16th September 2023 2:41pm
Forum: Beginners
Topic: Gtk Button Theming 'suggested-action' and 'destructive-action'
Replies: 12
Views: 6000

Re: Gtk Button Theming 'suggested-action' and 'destructive-action'

Have a look at ColButton that's on the farm and here.
by cogier
Thursday 14th September 2023 2:51pm
Forum: General
Topic: resize widgets on design time
Replies: 2
Views: 1346

Re: resize widgets on design time

The best place to ask for this is the Gambas mailing list . You can see this month's input here . This will get you straight to the creator of Gambas, Benoît Minisini . I put up Gambas.One as I think it is a better platform for user's programming issues that the mailing list format, each to their own!