Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Utilizing a Library function within a QBASIC program 1

Status
Not open for further replies.

pirigyi

Technical User
Apr 26, 2001
11
0
0
US
In order to utilize a Library function within a QBASIC program, what QBASIC statement must be inserted in the program to insure that the required function is loaded with the program for execution?

Any help would be appreciated, Thank you.

Mike
 
Sorry, QBasic cannot utilize libraries. You'll have to use "QUICKBasic" 4.5 or better not "QBasic".

If you do get a hold of QB 4.5 you MUST begin your QB session with the library loaded at the command prompt...

examples:

c:\QB45\QB.exe /L
(Use only the L if you want to load the standard library)

c:\qb45\qb.exe /L:MyLib.qbl+SomeOther.qbl
(This one will load libraries named "mylib.qbl" and "someother.qbl" to be used in your session and eventually in your compilation)

Good Luck,
--MiggyD "The world shrinks more and more with every new user online."
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top