Search found 123 matches

by cage
Monday 27th March 2023 6:05pm
Forum: Lounge
Topic: VisualFBEditor and InForm
Replies: 9
Views: 11392

Re: VisualFBEditor

I had it working in arch but after a couple of kernel updates it would no longer run. Seems it also runs on an older version ncurses and that is why it won't compile.
by cage
Tuesday 7th March 2023 9:30pm
Forum: General
Topic: A Gambas Compiler
Replies: 8
Views: 2449

Re: A Gambas Compiler

Bruce that would be a great idea. Although from what I have seen it's not a straight forward thing to do. There is a web site that explains how to create an app image with Gambas and by the looks of it, it's not that simple of a thing to do. Here is a url for Gambas and appimages: https://appimage-b...
by cage
Tuesday 7th March 2023 2:14am
Forum: General
Topic: A Gambas Compiler
Replies: 8
Views: 2449

Re: A Gambas Compiler

I don't think that will ever happen. What could be done though is combine the interpreter and the program as one. One program that I can remember was YaBasic which was an interpreted basic program. You could create an execute file by combining the interpreter and the program as one file. By combinin...
by cage
Monday 23rd January 2023 9:12pm
Forum: General
Topic: Strange Error
Replies: 3
Views: 2235

Re: Strange Error

Still don't know what caused these errors. I rewrote them and everything went as expected with no errors. Might be something got corrupted in the programs itself.
by cage
Monday 23rd January 2023 8:30pm
Forum: General
Topic: Strange Error
Replies: 3
Views: 2235

Strange Error

I recently had to reinstall my system and reinstall Gambas. My problem now is when ever I go to make an execute file I get the following errors" fr.po:19: 'msgid' and 'msgstr' entries do not both end with '\n' fr.po:35: 'msgid' and 'msgstr' entries do not both end with '\n' msgfmt: found 2 fata...
by cage
Wednesday 18th January 2023 12:12am
Forum: General
Topic: Should I update all forms after update to 3.18
Replies: 2
Views: 1374

Re: Should I update all forms after update to 3.18

You don't need to update your forms with an update. Only if your going backwards to an older version of Gambas. Sometimes how ever you may run into an updated command that works a bit different. If that is the case then it's just a matter up changing the command to the newer requirements.
by cage
Thursday 16th June 2022 5:43pm
Forum: General
Topic: something happened to the Gambas GUI
Replies: 5
Views: 1716

Re: something happened to the Gambas GUI

I got it working again normally. What I did was delete all the file in the language section for the program. Restarted Gambas and everything worked as normally. Every program after that worked as it was suppose to. Really weird to say the least.
by cage
Wednesday 15th June 2022 6:14pm
Forum: General
Topic: something happened to the Gambas GUI
Replies: 5
Views: 1716

Re: something happened to the Gambas GUI

I reinstalled Gambas and it does work, only I still get the error messages. Seems to be a translation error. It does compile the programs and they do work. I am using Gambas 3.17.2. There was a update not long ago but I never checked to see if there were errors when compiling programs. Now for the w...
by cage
Wednesday 15th June 2022 3:14am
Forum: General
Topic: something happened to the Gambas GUI
Replies: 5
Views: 1716

Re: something happened to the Gambas GUI

Yeah I just checked Gambas and it is throwing errors too.
fr.po :19: 'msg id ' and 'msgstr' entries do not bot end with '/n'

fr.po:35: 'msgid' and 'msgstr' endtires do not bot end with '/n'

msgfmt: found 2 fatal errors
Wonder how long we are going to have to wait for this to get fixed
by cage
Friday 4th February 2022 6:44pm
Forum: General
Topic: Did you know?
Replies: 91
Views: 411952

Re: Did you know?

Was playing around with passing variables between forms and discovered how to do it without using global variables. You need to make the text boxes public for this to work. ' Gambas class file 'Fmain Form Public te As Boolean Public TxOut As String Public Sub Form_Open() FMain.Center TextBox1.SetFoc...