Search found 306 matches
- Wednesday 20th January 2021 11:17am
- Forum: Project showcase
- Topic: My Little Gambas Helper
- Replies: 3
- Views: 117
Re: My Little Gambas Helper
I've just uploaded a new version to post #1 above. This version now includes proper page-back, page-forward browser buttons and 3 new site searches:- - Gambas wiki sub-section (Components) - Gambas Book (German/English) - The Gambas Mailing List ...Oh, and I've also added a Cookie Jar. HelpBrowser.p...
- Thursday 14th January 2021 8:06am
- Forum: General
- Topic: The new Gambas AppImage - can it run on Android?
- Replies: 5
- Views: 167
Re: The new Gambas AppImage - can it run on Android?
I found myself thinking about the wider implications of this question at 3am last night, when I couldn't sleep. (the wider implications being: developing or running Gambas programs on Android ). My initial reaction was "why would anyone want to lug Gambas all the way over to Android?" There are no '...
- Monday 11th January 2021 9:01am
- Forum: General
- Topic: Listbox advice
- Replies: 5
- Views: 166
Re: Listbox advice
...I have had good feed back from customers who say the Listbox is the best for them when they are using the software... I'm sorry, I really don't understand what you are saying. The end user will be unaware of the type of control you are using; they are only interested in its appearance and usabil...
- Sunday 10th January 2021 8:56pm
- Forum: General
- Topic: Listbox advice
- Replies: 5
- Views: 166
- Sunday 10th January 2021 11:44am
- Forum: Lounge
- Topic: Gambas adoption, script kiddies & old codgers
- Replies: 16
- Views: 483
Re: Gambas adoption, script kiddies & old codgers
Ideally we want beginners to ask questions on the Beginners sub-forum, and I thought we were going to change 'Did You Know?' into a series of simple 'Tips & Tricks'BruceSteers wrote: ↑Saturday 09th January 2021 10:03pm...I thought simple examples were wanted for the currently empty Beginners Forum.
Maybe i misunderstood?...
- Sunday 10th January 2021 11:28am
- Forum: General
- Topic: Did you know?
- Replies: 65
- Views: 31040
Did you know? Settings.Read() & Settings.Write()
level: Intermediate category: Language subject: gb.Settings Although the Gambas wiki shows an example of how to save a window size and position, there is as easier method. The wiki example saves settings like this:- Settings["Window/Top"] = Me.Top Settings["Window/Left"] = Me.Left Settings["Window/...
- Thursday 07th January 2021 5:28pm
- Forum: General
- Topic: User Define Types
- Replies: 10
- Views: 220
Re: User Define Types
...I keep hitting an error when setting the variable values (strings). Gambas is requesting an "AS" in the definition. Any idea what could be causing this? Public Struct Employee EmployeeNo As String FirstName As String LastName As String End Struct I think the example given may be wrong as the hel...
- Thursday 07th January 2021 7:18am
- Forum: General
- Topic: How do you merge Gambas project code?
- Replies: 7
- Views: 184
Re: How do you merge Gambas project code?
...If you are sharing your code with others git is ideal.... Back in the day, my last big project team were working with c/c++ code for the vision analysis, VB for the front-end and database, and PLC code for some of the 'physical' control aspects. So I'm used to working in a team with version cont...
- Wednesday 06th January 2021 4:19pm
- Forum: General
- Topic: How do you merge Gambas project code?
- Replies: 7
- Views: 184
Re: How do you merge Gambas project code?
That is also good to know Charlie.
But I think that as both code and graphical components are fully described in the source files and that these files are easy to read and understand, my vote goes to the file compare method.
- Wednesday 06th January 2021 4:09pm
- Forum: General
- Topic: How do you merge Gambas project code?
- Replies: 7
- Views: 184
Re: How do you merge Gambas project code?
maybe that will help ... Yes, thanks for the link. I think it confirms that for a single form project, you only need to check the differences between to two source files; myProject.class & myProject.form You can then make any required changes, and [hopefully] end up with a suitably updated, working...