Search found 47 matches

by nov79
Mar 16, 2020 20:18
Forum: Projects
Topic: Gas64 (no more use of gcc, only gas) WDS / LNX
Replies: 494
Views: 108206

Re: Gas64 (no more use of gcc, only gas) WDS / LNX

fbc itself uses the legacy libtinfo5. So you have to install libtinfo5, not 6.
by nov79
Mar 15, 2020 12:11
Forum: Community Discussion
Topic: Is there any gui designer for freebasic on linux?
Replies: 8
Views: 2418

Is there any gui designer for freebasic on linux?

I really miss the gui designer. I know they're just resource editor so they're only available on windows :(
by nov79
Mar 15, 2020 11:58
Forum: Projects
Topic: IUP_FB_EDITOR (simple development environment)
Replies: 175
Views: 55199

Re: IUP_FB_EDITOR (simple development environment)

VANYA wrote:
nov79 wrote:Updated to the latest version. Anyway, how to change the theme (text background, color scheme...)? It's always black. I want to be able to select between dark and light theme. Thanks.
video: https://yadi.sk/i/zqcUtOCe9mNB4w
Thanks.
by nov79
Mar 14, 2020 11:15
Forum: Community Discussion
Topic: Dream of sugar
Replies: 12
Views: 2964

Re: Dream of sugar

I just want FreeBASIC to copy GAMBAS' syntax and OOP system. I admit I'm not comfortable with the current OOP system. p/s: Please don't ask me why don't I just use GAMBAS. I like compiled language and a standalone binary, do not depend on other guys' interpreter. If someone come up with a compiler f...
by nov79
Mar 14, 2020 11:11
Forum: Projects
Topic: IUP_FB_EDITOR (simple development environment)
Replies: 175
Views: 55199

Re: IUP_FB_EDITOR (simple development environment)

Hi ALL! Update Editor. ADDED: 1) move tabs (thanks WQ for code) 2) now the parser supports a block OPERATOR-END OPERATOR . The implementation of the parser is complete , now only bug fixes (if you will). 3) in the preview window (side window) added the ability to output: UNIONS, OPERATORS, PROPERTI...
by nov79
Mar 12, 2020 18:26
Forum: Linux
Topic: [solved] Need some help about terminal.
Replies: 6
Views: 2017

Re: Need some help about terminal.

Thank you for your anwsers. @badidea I also found this solution but it didn't work : smae behaviour. What terminal version ? mine is 0.8.7.4 and the option is in compatibilty menu not advanced. @robert I already installedl libtinfo5 otherwise I would have ran in trouble for testing fb64_gas64 :-) I...
by nov79
Mar 07, 2020 14:52
Forum: Projects
Topic: Gas64 (no more use of gcc, only gas) WDS / LNX
Replies: 494
Views: 108206

Re: Gas64 (no more use of gcc, only gas) WDS / LNX

fbc64_gas64 worked well with my small programs.
by nov79
Mar 03, 2020 17:19
Forum: Community Discussion
Topic: Android
Replies: 1
Views: 937

Android

Not related but B4A now free: https://www.b4x.com/b4a.html I don't advertise for it but only want to know if some day FreeBasic could be used to develop for Andoird. The FreePascal guys already have LAMW. I have used B4J in the past. But since I moved away from Windows I also have to dropped it. Now...
by nov79
Mar 03, 2020 17:11
Forum: Community Discussion
Topic: Very different result
Replies: 22
Views: 3422

Re: Very different result

Before fbc version 0.90.0, '=>' could only be used in initializing expressions (construction + initialization on a single line) like: 'Dim As Datatype variable => value' (equivalent to 'Dim As Datatype variable = value' ). This usage has been extended to pure assignment like: 'variable => value' (e...
by nov79
Mar 03, 2020 17:10
Forum: Projects
Topic: Gas64 (no more use of gcc, only gas) WDS / LNX
Replies: 494
Views: 108206

Re: Gas64 (no more use of gcc, only gas) :-)

What is the current state of this? If you no longer depends on gcc, why don't support llvm-as too? This way you could run on FreeBSD without the need to install gcc.
by nov79
Mar 03, 2020 17:06
Forum: Projects
Topic: VisualFBEditor - IDE for FreeBasic
Replies: 891
Views: 130729

Re: VisualFBEditor - IDE for FreeBasic

Bugs: can't change theme, when select Dark theme it has no effect, even after restart the program. There is no way to change font, it's fixed to Courier, click to the button next to it did nothing, no dialog appeared to choose new font. GTK3 version. Debian 10. Linux 4.19. XFCE4. This is not done y...
by nov79
Mar 03, 2020 17:04
Forum: Projects
Topic: IUP_FB_EDITOR (simple development environment)
Replies: 175
Views: 55199

Re: IUP_FB_EDITOR (simple development environment)

I just notice I don't have to run sudo ldconfig /usr/lib64 each time I start fbnp anymore.
by nov79
Mar 03, 2020 15:09
Forum: Projects
Topic: VisualFBEditor - IDE for FreeBasic
Replies: 891
Views: 130729

Re: VisualFBEditor - IDE for FreeBasic

Bugs: can't change theme, when select Dark theme it has no effect, even after restart the program. There is no way to change font, it's fixed to Courier, click to the button next to it did nothing, no dialog appeared to choose new font.

GTK3 version. Debian 10. Linux 4.19. XFCE4.
by nov79
Mar 03, 2020 15:05
Forum: Projects
Topic: IUP_FB_EDITOR (simple development environment)
Replies: 175
Views: 55199

Re: IUP_FB_EDITOR (simple development environment)

Updated to your new version.
by nov79
Mar 03, 2020 14:37
Forum: Community Discussion
Topic: Very different result
Replies: 22
Views: 3422

Re: Very different result

Not needed. I diagnosed the problem. The problem is in the print to screen part, not the calculating of the sequence. Free Basic's Print is much slower than crt's printf. You are not the first to mention this, actually: https://freebasic.net/forum/viewtopic.php?f=3&t=26204 Are you using Linux o...