Search found 227 matches
- May 25, 2020 18:03
- Forum: Community Discussion
- Topic: any free BASIC for web/ios/android
- Replies: 15
- Views: 9490
Re: any free BASIC for web/ios/android
I'm testing x11basic on linux with geany as editor. I compiled the sources. there's a real interpreter and a pseudocode generator which makes the programs faster and the possibility to generate c compilable with gcc. exists for linux, windows, android. graphically, it's a bit old but it's excellent ...
- May 15, 2020 17:10
- Forum: Libraries
- Topic: raylib headers
- Replies: 65
- Views: 6490
Re: raylib headers
Yeah, that would be a really good thing for freebasic.
Re: sGUI
i just tested this version on kde neon 64 (ubuntu). all examples compile and work well. cpu occupancy rate 3% to 12%. reasonable. excellent.
only WinDemo_WINDOWMESSAGE causes an error message :
Segmentation fault
there would be documentation in english!
only WinDemo_WINDOWMESSAGE causes an error message :
Segmentation fault
there would be documentation in english!
- May 06, 2020 15:13
- Forum: Tips and Tricks
- Topic: FLTK GUI without C wrapper
- Replies: 6
- Views: 978
Re: FLTK GUI without C wrapper
Great. As soon as I have some time, I'll look at...
Re: sGUI
great job. shame that the comments are in German in the source codes. English would have been better. thank you for the examples provided. missing documentation. I know. This is most annoying to do ... If the released code retains a comment in the original national language and then adds a comment ...
- May 06, 2020 15:02
- Forum: Projects
- Topic: New IDE:vfb(Visual Freebasic)Like vb6,vb7(Update 2020-04-30)
- Replies: 62
- Views: 5610
Re: New IDE:vfb(Visual Freebasic)Like vb6,vb7(Update 2020-04-30)
use DeepL instead. the translation is much better.
- May 05, 2020 13:20
- Forum: Projects
- Topic: New IDE:vfb(Visual Freebasic)Like vb6,vb7(Update 2020-04-30)
- Replies: 62
- Views: 5610
Re: New IDE:vfb(Visual Freebasic),Like vb6,vb7
advanced users should no longer use windows. too heavy. too restrictive. disrespectful of privacy. too many flaws. it's only my opinion ...
Interesting project. If there's a linux version I would test...
Interesting project. If there's a linux version I would test...
- Apr 27, 2020 17:18
- Forum: Community Discussion
- Topic: Could someone make a list of FreeBASIC GUI libraries/frameworks?
- Replies: 166
- Views: 8549
Re: Could someone make a list of FreeBASIC GUI libraries/frameworks?
fltk is the best possible library for freebasic because it doesn't require dependency and allows static compilation. i tested it with codeblock. it works very well. a simple program has a size of about 700 kb. which is very reasonable. it should be a wrapper for freebasic which allows to use direct...
- Apr 26, 2020 12:18
- Forum: Community Discussion
- Topic: Could someone make a list of FreeBASIC GUI libraries/frameworks?
- Replies: 166
- Views: 8549
- Apr 16, 2020 17:03
- Forum: Linux
- Topic: Small environment to cross-compile for win32 from Linux
- Replies: 7
- Views: 696
Re: Small environment to cross-compile for win32 from Linux
as far as I'm concerned, it's out of the question to install wine. too heavy. in order not to pollute the main system, I used an lxd container. after its creation, I installed wine 5 and many development programs, lazarus freepascal linux and windows, freebasic linux and windows and many other progr...
- Mar 14, 2020 16:22
- Forum: Libraries
- Topic: raylib headers
- Replies: 65
- Views: 6490
Re: raylib headers
note : i have corrected the script in case the files to be processed have several points. it's rare but it can happen...
- Mar 12, 2020 17:18
- Forum: Libraries
- Topic: raylib headers
- Replies: 65
- Views: 6490
Re: raylib headers
excellent lib but the compilation instructions are for windows. i had to make some adaptations to compile under linux with codeblocks. that said, to speed up the compilation, i made the following bash script : #!/bin/bash shopt -s nullglob for f in *.c do echo Compiling : "$f" gcc -O2 -Wal...
- Mar 11, 2020 20:41
- Forum: Libraries
- Topic: raylib headers
- Replies: 65
- Views: 6490
Re: raylib headers
impressive library. it would be cool to divert it from its use and use it to create a graphical interface to programs generated by freebasic. the programs compiled with the static library are around 630 kb in size. it's perfect. I tried to test it with codeblocks but it is parameter for windows. if ...
- Mar 09, 2020 13:07
- Forum: Libraries
- Topic: FLTK-C-1.3.3 for FreeBASIC
- Replies: 393
- Views: 94311
Re: FLTK-C-1.3.3 for FreeBASIC
All right, I understand. I asked the question because in the beginning you provided static libraries.
As far as Gtk is concerned, I agree...
As far as Gtk is concerned, I agree...
- Mar 08, 2020 18:08
- Forum: Libraries
- Topic: FLTK-C-1.3.3 for FreeBASIC
- Replies: 393
- Views: 94311
Re: FLTK-C-1.3.3 for FreeBASIC
excellent work. but the advantage of fltk is the static compilation, which allows you to distribute programs without too many dependencies. under linux, i compiled the latest version of fltk. the default choice is to produce static libraries. why did you choose shared libraries? it complicates the d...