Search found 1778 matches

by Imortis
Sep 05, 2022 20:23
Forum: Archive
Topic: freeBASIC Psalms Reader with GUI and TTS
Replies: 5
Views: 2959

Re: freeBASIC Psalms Reader with GUI and TTS

Those kinds of books are always fun to look at. Thanks for the link.
by Imortis
Sep 05, 2022 17:16
Forum: Archive
Topic: freeBASIC Psalms Reader with GUI and TTS
Replies: 5
Views: 2959

Re: freeBASIC Psalms Reader with GUI and TTS

What is bible basic? Never heard of that before.
by Imortis
Aug 20, 2022 16:17
Forum: Beginners
Topic: UDT - can't redefine abs math function
Replies: 12
Views: 1022

Re: UDT - can't redefine abs math function

ABS is a FB command. Might also be an asm command.
by Imortis
Aug 16, 2022 13:21
Forum: Libraries Questions
Topic: mingw64 compiled dll - missing version on dll properties
Replies: 2
Views: 3125

Re: mingw64 compiled dll - missing version on dll properties

I believe that information is pulled from a manifest file at compile time, but I am afraid I don't know how that works for DLLs. It might be better to ask at the github page for that instead of here as we have no control over that library.
by Imortis
Aug 09, 2022 17:02
Forum: Libraries & Headers
Topic: FLTK headers for FreeBasic OOP (no C wrapper)
Replies: 232
Views: 26741

Re: FLTK headers for FreeBasic OOP (no C wrapper)

Interesting. I will take a look at this later when I get some free time.
by Imortis
Jul 27, 2022 13:11
Forum: General
Topic: What is the FreeBasic equivalent to "char" in C++?
Replies: 13
Views: 1718

Re: What is the FreeBasic equivalent to "char" in C++?

Hi peoples Can someone explain something as I have asked this question before. Is FreeBASIC Compiler C or C++ based? From all of what I read, and looking at the compiler FBC, it leaves me to believe that it is a C compiler, yet I repeatedly see people referring to using C++ in FB. Is this an additi...
by Imortis
Jul 25, 2022 18:21
Forum: Windows
Topic: Configure libraries for database
Replies: 10
Views: 1860

Re: Configure libraries for database

That is a windows error code. If you do a Google search for that error code you get an explanation that says it is usually caused by an out of date .Net framework or C redistributable library. It is more likely that you are trying to use a newer version of the library than the example was written for.
by Imortis
Jul 25, 2022 15:41
Forum: Windows
Topic: Configure libraries for database
Replies: 10
Views: 1860

Re: Configure libraries for database

Please provide the code that and the error message you are getting.
by Imortis
Jun 28, 2022 23:35
Forum: Windows
Topic: How to translate this C To FREEBASIC
Replies: 10
Views: 1746

Re: How to translate this C To FREEBASIC

Do you know any C or FB? If so, maybe you can show us the parts you are having trouble with.
by Imortis
Jun 21, 2022 15:28
Forum: Projects
Topic: FreeBASICpi - Retro Rasberry PI image
Replies: 12
Views: 4740

Re: FreeBASICpi - Retro Rasberry PI image

Okay so maybe nobody wants to sign up for Ko-Fi to download a book... That's cool, I understand. Here Google. If anyone has any better places to put them let me know. Please provide feedback as well I'm interested in improving this and with enough interest I'd write additional books on more advance...
by Imortis
May 24, 2022 18:01
Forum: Projects
Topic: WinFBE Editor and FreeBASIC Compiler (All-in-One Package) (V3.1.0 June 4, 2023)
Replies: 981
Views: 347378

Re: WinFBE Editor and FreeBASIC Compiler (All-in-One Package) (V3.0.0 May 24, 2022)

Clicking in the Bookmark column with the mouse to set/unset a bookmark does not update the bookmark list. It only updates when using the menu or keyboard shortcut.
by Imortis
May 20, 2022 21:47
Forum: Community Discussion
Topic: Sharing My Forum Styles for Chrome & Firefox Browsers
Replies: 9
Views: 1223

Re: Sharing My Forum Styles for Chrome

misterc wrote: May 20, 2022 19:21 What's another website with the same keyword-focused information, indexed as separate pages? I'll check it out.
https://www.freebasic.net/wiki/CatPgFullIndex
by Imortis
May 20, 2022 0:43
Forum: General
Topic: Constructor not executing [Solved]
Replies: 8
Views: 677

Re: Constructor not executing

No, default constructor is the one with no argument. It runs when you do not assign a value at variable creation. The other one runs when you assign a value to the variable at creation. To prove it try it with something other than a boolean and set the default to something other than 0 or an empty s...
by Imortis
May 20, 2022 0:20
Forum: General
Topic: Constructor not executing [Solved]
Replies: 8
Views: 677

Re: Constructor not executing

Of the two constructors, only one is executed. When you give it a value, with the skip variable, it sets it to True and never runs the default constructor. Without it, the value of the boolean is never set at all and booleans default to false.