Page 1 of 1

Loading More than 1 QLB

Posted: Mon Jun 26, 2006 10:59 am
by speesoft1991
Hi! I am using QB 4.5 to make a game with QMIDI and Future.Library.

QMIDI requires QB.qlb so i just use

Code: Select all

C:\qb45\qb /l qb.qlb
but what to i do to load Future.Library in to Memory along with QB.qlb???

Posted: Mon Jun 26, 2006 12:04 pm
by Antoni
You can load only one QLB into QB.
IIRC Future Lib comes with an app allowing you to build a custom lib only with the modules you need, there is an option to add QB.QLB to the package.

Posted: Tue Sep 18, 2007 1:20 pm
by NaTeDoGG
First execute this...

LIB first.lib + second.lib,newlib.cat,newlib.lib

The result is first.lib and second.lib are combined into newlib. Next execute this...

LINK /q newlib.lib,newlib.qlb,nul,bqlb45;

The result is newlib.lib is transformed into newlib.qlb, which can then be used to start QB45...

qb.exe /L newlib.qlb

This method works just fine, it is just a bit esoteric. Someone should make this information more readily available.

This will make it easy

Posted: Wed Sep 26, 2007 1:05 am
by Bulldog
Multilib makes quick work of combining libs

Get it here
http://www.programmersheaven.com/downlo ... nload.aspx

or here
http://justbasic.i8.com/multilib.html

or just google multilib qbasic