Search found 12 matches
- May 27, 2023 20:39
- Forum: Windows
- Topic: FreeBASIC not flushing output on msys2
- Replies: 5
- Views: 1881
Re: FreeBASIC not flushing output on msys2
What's right is what's left if you do everything else wrong. - Robin Williams sooo, I found the solution to my stupid little problem and poor little freeBASIC has been wrongly accused again! :? :shock: :twisted: if you have this problem you can fix it by putting this in your .bashrc: export MSYS=di...
- May 27, 2023 18:21
- Forum: Windows
- Topic: FreeBASIC not flushing output on msys2
- Replies: 5
- Views: 1881
Re: FreeBASIC not flushing output on msys2
I agree that it is probably related. I tried the solution posted by dkl (apparently, it's from /examples/console/disable-vt100-escapes.bas). extern "C" extern __fb_enable_vt100_escapes as long dim shared __fb_enable_vt100_escapes as long = 0 end extern It didn't work for me. [this solution...
- May 26, 2023 20:21
- Forum: Windows
- Topic: FreeBASIC not flushing output on msys2
- Replies: 5
- Views: 1881
FreeBASIC not flushing output on msys2
versions: FB 1.09 and 1.10, (I downloaded FreeBASIC-1.10.0-winlibs-gcc-9.3.0.7z) windows 10 with msys2 (bash, xterm) anyone else seen any symptoms like this? no output at all if I'm at the bottom of the screen. if there's enough output so that it needs to scroll, I see a flash of text going by, and ...
- May 29, 2020 3:25
- Forum: Community Discussion
- Topic: jdoodle online Freebasic compiler
- Replies: 1
- Views: 1408
jdoodle online Freebasic compiler
I was just playing around with the online freebasic compiler at jdoodle on my phone. It works pretty well and it's fast. You can upload files, and it has a collaboration feature. Versions 1.07 or 1.05. Click the menu button (...) next to the Execute button for a pop up menu. I didn't try to do anyth...
- May 29, 2020 1:43
- Forum: Community Discussion
- Topic: BASIC is not BASIC anymore
- Replies: 10
- Views: 2824
Re: BASIC is not BASIC anymore
A little love for var. var is one of my favorite features. I think it's elegantly done, it's optional, and it's not that hard to remember: var isint = 5 ' always integer var isdbl = 5.0 ' always double var issngl = cast(Single‚ 4.14) ' explicit etc... of course where it really is helpful is with UDT...
- May 27, 2020 4:08
- Forum: General
- Topic: How to generate a static library that FB can use
- Replies: 30
- Views: 5006
- Mar 09, 2020 0:17
- Forum: Community Discussion
- Topic: Installing FreeBasic with Scoop on Windows
- Replies: 21
- Views: 3924
Re: Installing FreeBasic with Scoop on Windows
The whole purpose of the WinFBE_Suite package is to make the process of using FreeBasic more noob friendly. You mean this file, correct? WinFBE_Suite.rar If so, then that is the file that is in your json file on this page (winfbe.json): Scoop Extras so they seem to be using the most reasonable vers...
- Mar 08, 2020 0:03
- Forum: Community Discussion
- Topic: Installing FreeBasic with Scoop on Windows
- Replies: 21
- Views: 3924
Re: Installing FreeBasic with Scoop on Windows
just noticed that winfbe and fbide have been added to scoop as well... >scoop info winfbe Name: winfbe Description: FreeBASIC Editor for Windows Version: 2.0.6 Website: https://github.com/PaulSquires/WinFBE License: GPL-3.0-or-later (https://spdx.org/licenses/GPL-3.0-or-later.html) >scoop info fbide...
- Feb 27, 2020 1:51
- Forum: Sources, Examples, Tips and Tricks
- Topic: Open URLs in browser via Shell command from FB app
- Replies: 8
- Views: 2455
Re: Open URLs in browser via Shell command from FB app
so, if I want to open an url in the default browser, is it this simple? (i can only test this on windows..) sub open_url(byval url as string) dim as string cmd #ifdef __FB_WIN32__ cmd = "start /b " & url #else cmd = "xdg-open " & url #endif shell cmd end sub ' test open_u...
- Feb 21, 2020 23:17
- Forum: Community Discussion
- Topic: Installing FreeBasic with Scoop on Windows
- Replies: 21
- Views: 3924
Re: Installing FreeBasic with Scoop on Windows
Both: "scoop info freebasic" and "scoop install freebasic" do not show (above) form where reeBASIC-1.07.1-win64.zip is downloaded. So, apparently it works, but how do you know that you aren't downloading and installing something else (virus, malware) with the same name? Scoop us...
- Feb 21, 2020 21:29
- Forum: Community Discussion
- Topic: Installing FreeBasic with Scoop on Windows
- Replies: 21
- Views: 3924
Installing FreeBasic with Scoop on Windows
Windows now has at least two Package Managers, Chocolatey and Scoop. I found FreeBasic on Scoop , and it's up to date. This was me installing it: c:\arp>scoop info freebasic Name: freebasic Description: BASIC compiler for Microsoft Windows, DOS and Linux. Version: 1.07.1 Website: https://www.freebas...
- Jan 06, 2020 1:26
- Forum: Libraries Questions
- Topic: lost fastcgi libs on github
- Replies: 0
- Views: 2880
lost fastcgi libs on github
I found the long-lost libs for fastcgi on github. https://github.com/FastCGI-Archives (if this isn't news, sorry. i did a search or two...) A guy rescued them using archive.org's wayback machine . Maybe someone could update the link on the wikki? (I'm new here...) The page has several sets of the li...