Search found 1552 matches

by BruceSteers
Sunday 16th April 2023 11:51am
Forum: Project showcase
Topic: ScriptED script editor.
Replies: 8
Views: 10639

Re: ScriptED script editor.

ScriptEd is in the process of getting a complete re-write and is almost ready. Like my Desktop-ish program it has been pretty much re-written from scratch as my gambas knowledge is better these days. New interface, using expandable panels. Multiple Terminals. External tools feature. re-built. Keystr...
by BruceSteers
Saturday 15th April 2023 5:41pm
Forum: Component
Topic: SDL 2 sound volume
Replies: 2
Views: 3544

Re: SDL 2 sound volume

by BruceSteers
Friday 14th April 2023 4:54pm
Forum: The Gambas IDE
Topic: Search & Replace disabled
Replies: 1
Views: 3341

Re: Search & Replace disabled

Hi, using Gambas 3.18.1, when I open the Search-&-Replace-box (Ctrl-F), both textboxes are disabled, I can't enter some text to search or replace (editing the code is generally possible). What's wrong? Tanks! Nothing with my gambas it all works as expected. I guess you have something wrong with...
by BruceSteers
Friday 14th April 2023 4:44pm
Forum: Beginners
Topic: vb6 CopyMemory replacement
Replies: 4
Views: 864

Re: vb6 CopyMemory replacement

I use this extensively in my code, has anyone made a copymemory replacement in Gambas? I assume it will require an opem .. then a read and write thanks you may need to wrap your head around the fact that despite gambas being similar to vb it really is not vb and it works quite differently. what exa...
by BruceSteers
Friday 14th April 2023 2:13am
Forum: Beginners
Topic: OrangePI Ubuntu Loads but any component drop in GUI crashe
Replies: 3
Views: 809

Re: OrangePI Ubuntu Loads but any component drop in GUI crashe

Hello, I am running a Orange Pi 3 LTS SBC, loaded thier provided Ubuntu Image (3.0.6) https://drive.google.com/drive/folders/1KzyzyByev-fpZat7yvgYz1omOqFFqt1k and Installed Gambas I also installed wayland which was required for Gamabas to start. So I can see Gambas ide, select project type, but whe...
by BruceSteers
Wednesday 12th April 2023 3:13pm
Forum: Project showcase
Topic: Desktop-ish
Replies: 3
Views: 4516

Re: Desktop-ish

Desktop-ish is currently being rebuilt from the ground up and is almost ready. New features.... * Now "Any" number of folders can be added and their type can be Desktop or Panel type. Unlike the previous version that just had a single Desktop and/or Panel view. * View background can now be...
by BruceSteers
Monday 10th April 2023 9:52am
Forum: Beginners
Topic: using Gambas for single board pc Appliance
Replies: 4
Views: 749

Re: using Gambas for single board pc Appliance

Thanks for the response. I have spent most of the weekend trying to figure out how to proceed. obviously this week will get a Linux SBC install gambas and start learning I have seen how the web apllication works, although having a tough time understanding how I would get my console app to do this. ...
by BruceSteers
Sunday 9th April 2023 11:10pm
Forum: Beginners
Topic: RegExp Global Search
Replies: 7
Views: 1084

Re: RegExp Global Search

yes but easier to not use regexp at all and just use the exiftool -Tag name feature ;) the following will give the same result... exiftool -FileSize -Make -ImageSize -Megapixels -ShutterSpeed ~/Pictures/myphoto.jpg (couldn't get -CameraModelName to work but -Make gave the same string) It does not lo...
by BruceSteers
Sunday 9th April 2023 6:22pm
Forum: General
Topic: Opera and cry from the Gambas IDE
Replies: 15
Views: 2977

Re: Opera and cry from the Gambas IDE

It will only play today , then play again in 40 days time (ascension day)
Then that's it till Christmas
by BruceSteers
Sunday 9th April 2023 5:24pm
Forum: General
Topic: Opera and cry from the Gambas IDE
Replies: 15
Views: 2977

Re: Opera and cry from the Gambas IDE

If you really do not like it you can change the code... Line 105 of FWelcome.class has this... bHasTear = PlaySound() That runs the playsound method... You could just comment out that line and recompile the ide. Or edit the method... Private Sub PlaySound() As Boolean Dim dNow As Date Dim iYear As I...