Home | Reviews | GUIpedia | Forum | Fun500
aguma | Qbasic libraries in FreeBASICIs there any way to use a qbasic library in FreeBASIC? Specifically, I'm trying to compile Spark in FreeBASIC for speed & because I ran out of memory in qb. :laugh:
So, can I use a QLB in FreeBASIC? If not, what should I do about it? | 2008-09-18 | 8:23 PM |
| Re:Qbasic libraries in FreeBASICDon't use freebasic! If your programs don't go so well due to qbasic's limits, find a way around them! That is the fun in QBasic programming. | 2008-09-18 | 8:37 PM |
aguma | Re:Qbasic libraries in FreeBASICwell it works when I run it in QB but it can't compile, that's the annoying part! | 2008-09-18 | 8:41 PM |
Todd | Re:Qbasic libraries in FreeBASICTry using BC and LINK alone. QB uses its own way of compiling with BC and LINK but if you do this:
[code]
bc/o/t spark spark nul
link spark+qb.lib spark.exe
[/code]
I forget if that's the way to do it but try it that way. At least it should tell you why it won't compile. | 2008-09-18 | 9:21 PM |
ksr | Re:Qbasic libraries in FreeBASICQB = 16-bit
FB = 32-bit
As far as I'm aware, there is no way to use a compiled QB library in FreeBASIC. If you have the source, of course, you could try and port it. | 2008-09-19 | 4:53 AM |
Other
2021 Brandon Cornell