Search found 11 matches

by Plasma
Wed Apr 23, 2008 12:04 pm
Forum: General Discussion
Topic: "how to" graphics book
Replies: 2
Views: 8176

by Plasma
Wed Jan 23, 2008 12:29 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Error during run-time initialization
Replies: 8
Views: 12937

Works fine for me. Probably the problem is in your batch file. You never delete testrun.exe, and ren will fail if the destination is present. So you are most likely not running the built exe, but an older one. (The error message you got occurs when you use a runtime library with different string or ...
by Plasma
Wed Jan 23, 2008 12:07 am
Forum: QBASIC and QB64 Questions & Answers
Topic: LINK: warning L4501: bcl71efp.lib : cannot find lib (DONE)
Replies: 7
Views: 10877

If you are using protected mode (/Lp) PDS only supports OS/2. There is no protected-mode DOS support in PDS.
by Plasma
Tue Jan 22, 2008 2:24 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: LINK: warning L4501: bcl71efp.lib : cannot find lib (DONE)
Replies: 7
Views: 10877

You must have an incomplete copy then. Here are all of the above libraries:

http://www.phatcode.net/stuff/bcl71.zip

(Copy them to your lib directory.)
by Plasma
Tue Jan 22, 2008 4:29 am
Forum: QBASIC and QB64 Questions & Answers
Topic: LINK: warning L4501: bcl71efp.lib : cannot find lib (DONE)
Replies: 7
Views: 10877

Quite simple...you're missing bcl71efp.lib. Reinstall it again and make sure to install all the libraries you need: Bcl71afp.lib. Pds. Combined library for stand-alone executable files using alternate mathematics, far-strings and protected mode. Bcl71afr.lib. Pds. Combined library for stand-alone ex...
by Plasma
Wed Jan 16, 2008 11:23 pm
Forum: Freebasic Questions & Answers
Topic: Is FB QB in disguise?
Replies: 54
Views: 129897

Nodtveidt wrote:By the way, does anyone happen to know Plasma's real name? All I could find is the name "Jon Petrosky". Anyone know if this is is right?
My name is on almost everything I've ever released...so yes, that's correct. You going to stalk me or something? :P
by Plasma
Thu Nov 09, 2006 1:17 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Copy Files Using QB45
Replies: 14
Views: 43675

DECLARE SUB CopyFile (From$, To$) SUB CopyFile (From$, To$) ' Open the input file in binary mode InFile = FREEFILE OPEN From$ FOR BINARY AS #InFile ' Open the output file ' (truncate it if it exists) OutFile = FREEFILE OPEN To$ FOR OUTPUT AS #OutFile CLOSE #OutFile ' Reopen the output file in binar...
by Plasma
Mon Nov 06, 2006 6:44 am
Forum: News and Announcements
Topic: EMS Magic 1.0 released (expanded memory emulator for WinXP)
Replies: 4
Views: 19915

EMS Magic 1.0 released (expanded memory emulator for WinXP)

Now you can enjoy all those QB classics you couldn't run before in Windows XP, due to EMS problems: Wetspot 2, Shell Shock, Ultimate Super Stack, FoX, and more! Over 70 games and demos have been tested as fully working. Grab it here: http://emsmagic.phatcode.net/ (Easy-as-cake Windows installer avai...
by Plasma
Mon May 15, 2006 9:51 am
Forum: General Discussion
Topic: Info about SBMIDI and SBSIM
Replies: 2
Views: 7690

If you understand BASIC, then you should be able to get all the info you need from QMIDI. Or take a look at the interrupt listing.
by Plasma
Fri Apr 07, 2006 1:40 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Direct QB Lib stuff
Replies: 7
Views: 10010

No, you need to start QB with /L when running DQBMan. It requires InterruptX in QB.QLB/LIB. QB doesn't accept unix-style switches, so if you run QB -L it just thinks you want to open a file named "-L.BAS".
by Plasma
Tue Apr 04, 2006 7:31 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Direct QB Lib stuff
Replies: 7
Views: 10010

That should be "QB /L" and "QB /L DQB.QLB".