Search found 1593 matches

by BruceSteers
Thursday 17th September 2020 8:09pm
Forum: Project showcase
Topic: Simple Temp monitor example using LCDLabel
Replies: 5
Views: 11556

Simple Temp monitor example using LCDLabel

This is a simple text based temperature display using LCDLabel Made as an example it is simple and has many descriptive comments. Gets temperature in one of 3 ways, Either runs a command and uses it's direct output or loads a temp file that stores the temperature as a simple number being the tempera...
by BruceSteers
Thursday 17th September 2020 2:10pm
Forum: Project showcase
Topic: A project managing project
Replies: 7
Views: 8064

Re: A project managing project

Right here it is... I'm using it myself already for handy things like.. If i've worked on an app in 3.15 and try to load it in a lesser version the IDE crashes if i've set a "CurrentArgument" because below 3.15 stored the current arg as an integer value (the list index) now in 3.15 the fie...
by BruceSteers
Thursday 17th September 2020 12:07pm
Forum: Project showcase
Topic: Sudo relauncher class (using pkexec)
Replies: 1
Views: 3240

Re: Sudo relauncher class (using pkexec)

I did the Todo It will now pass any additional given arguments to the app being launched. I've renamed it to PkLaunch.class as it wasn't the pkPolicy.class that's another class i wrote for pkAppMan that fully manages the pkexec policy file. but i used that class and cut it down to the relauncher , f...
by BruceSteers
Wednesday 16th September 2020 10:37pm
Forum: General
Topic: Backward compatibilty tip
Replies: 0
Views: 3786

Backward compatibilty tip

I had an issue with upgrading to the latest Gambas 3.15. My biggest concern was that for some upgrading from the mainstream versions (3.12 on Debian, 3.14 on Ubuntu) to the latest might be a bit of a challenge and my programs would not work for them if compiled on the latest 3.15. If running a 3.15 ...
by BruceSteers
Tuesday 15th September 2020 3:25pm
Forum: Project showcase
Topic: A project managing project
Replies: 7
Views: 8064

Help with colour format please.

Hi all. Well the GambasTweak (renamed from GambasMan) app is about ready for upload. It currently has (and is working) The afore mentioned way to have a source and distro folder for your project and able to compile to any given name. You can run app with args you might have set in the IDE (gives cho...
by BruceSteers
Sunday 13th September 2020 8:43pm
Forum: General
Topic: Minimum window size?
Replies: 5
Views: 4964

Re: Minimum window size?

From what I've read a "modal" window behaves differently to a normal one, it doesn't even trigger events apparently, just allows the user to input data and have the data on close. So I dont think I can use that method anyway.
Thanks anyway.
by BruceSteers
Saturday 12th September 2020 12:47pm
Forum: Project showcase
Topic: A project managing project
Replies: 7
Views: 8064

Re: A project managing project

I've made this... GambasAppInstallMaker.zip It's some code i've ripped out of this GambasTweak app. It's basically a minimum requirement (dependency) installer for any gambas app. it asks for your gambas project directory and reads the .project file in it and gets your apps required gambas component...
by BruceSteers
Saturday 12th September 2020 11:12am
Forum: General
Topic: [Solved] Package as Appimage
Replies: 15
Views: 18161

Re: Package as Appimage

I'll have a look at AppImage though and see what i can figure out I had a look and found if i went to the appImage website and downloaded their AppImage maker , that was an AppImage , it didn't work lol. It's not looking promising lol. I've made this... GambasAppInstallMaker.zip It's some code i've...
by BruceSteers
Saturday 12th September 2020 10:00am
Forum: General
Topic: Minimum window size?
Replies: 5
Views: 4964

Re: Minimum window size?

I've sent Ben the code and said pretty pretty please can we have a MinimumWidth & height setting :) Would sure save a lot of messing about. I couldn't use ShowModal without the segmentation fault 11 I even tried the SM_integer=Me.SowModal and Me.Close(SM_integer) still same error. Ben now has th...
by BruceSteers
Friday 11th September 2020 7:29pm
Forum: Component
Topic: TextEditor background
Replies: 4
Views: 4900

Re: TextEditor background

All praise the great Benoît :) In case anyone wanted the solution.. TextEditor1.Styles[Highlight.Background].Color = Color There's many other highlight options too. Pretty sure i can add to the wiki. Will try to add some info about the TextEditor to it. apparently gotta learn the wiki syntax first s...