Search found 1590 matches

by BruceSteers
Sunday 12th May 2024 6:37pm
Forum: General
Topic: Is there a more efficient way to set properties of each tab in a tabstrip?
Replies: 10
Views: 98

Re: Is there a more efficient way to set properties of each tab in a tabstrip?

Really simple, to be honest. Public Sub Form_Open() TabPanel1.Count = 3 End Maybe I need to wait until the control is created? Where then would I put this code? This same code in the Form_Open() sub works perfectly with a tabStrip, just not a tabPanel. Andrew Post your code !. Everyone "thinks...
by BruceSteers
Sunday 12th May 2024 6:25pm
Forum: Component
Topic: BUG: TabPanel
Replies: 1
Views: 12

Re: BUG: TabPanel

I have been through a ton of troubleshooting and it seems my conclusion is accurate, despite some people saying it should work. Nobody else has tested it and produced desired results, so I am submitting this. If I'm wrong, by all means please prove so and show me what I need to do. I just tried thi...
by BruceSteers
Saturday 11th May 2024 8:28pm
Forum: General
Topic: IDE Project Tree "Configuration" folder
Replies: 3
Views: 76

Re: IDE Project Tree "Configuration" folder

Who knows.

Maybe the start of ,,,,,, drum roll,,,,,,, plugins :)

Maybe ask Ben if he has plans to do other things with it.
by BruceSteers
Saturday 11th May 2024 8:02pm
Forum: General
Topic: Is there a more efficient way to set properties of each tab in a tabstrip?
Replies: 10
Views: 98

Re: Is there a more efficient way to set properties of each tab in a tabstrip?

There a couple of things here. 1. As with many controls, the property values are not set to the IDE values until the control is actually loaded. It is similar for code set property values. So some things depend on when you are trying to setting them. 2. As Bruce said, the "tabs" are best ...
by BruceSteers
Saturday 11th May 2024 1:59pm
Forum: General
Topic: Is there a more efficient way to set properties of each tab in a tabstrip?
Replies: 10
Views: 98

Re: Is there a more efficient way to set properties of each tab in a tabstrip?

Something like

TabPanel1[1].Text = "title"

Accessing the TabPanel like an array accesses each tab independently
by BruceSteers
Saturday 11th May 2024 9:14am
Forum: General
Topic: IDE Project Tree "Configuration" folder
Replies: 3
Views: 76

Re: IDE Project Tree "Configuration" folder

I think it's for highlight files. gb.highlight now supports your own highlight definition files that can be a part of your project and do not have to be a part of gambas (unlike when i made the sh highlight) This was the commit https://gitlab.com/gambas/gambas/-/commit/3484a2c7a257a836019f2e55c916be...
by BruceSteers
Friday 10th May 2024 5:38pm
Forum: General
Topic: What are the differences between Tab Strip and Tab Panel?
Replies: 3
Views: 68

Re: What are the differences between Tab Strip and Tab Panel?

TabPanel is the enhanced version.

TabStrip is basically the component qt5 gives us.

TabPanel is a gambas object that is an enhanced tabstrip that has more features but is also is more configurable when you know how to hack gambas controls :)
by BruceSteers
Thursday 9th May 2024 11:53pm
Forum: General
Topic: Music when Gambas starts
Replies: 1
Views: 51

Re: Music when Gambas starts

It was Ascension day.
by BruceSteers
Thursday 9th May 2024 10:14am
Forum: The Gambas IDE
Topic: Offline documentation
Replies: 2
Views: 88

Re: Offline documentation

Just discovered my offline documentation is out of date. Hit the button to install the updated version and it promptly throws up a message bot saying "Unable to uncompress documentation". Where is it trying to download and uncompress to and I'll look to see if it's a permission problem. $...
by BruceSteers
Wednesday 8th May 2024 8:07am
Forum: General
Topic: Am I missing something?
Replies: 4
Views: 97

Re: Am I missing something?

Thanks, for your reply, Bruce. Bare with me... my 62 year old brain works a little slower these days... So, I'm not missing a MediaPlayer form in the toolbox and MediaPlayer is only created by code? I haven't done much digging yet into the audio part of my project. Some of my security cameras have ...