Qbasicnews.com

Full Version: Add libs..
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have my own libary with diffrent routines..
Engine.lib
Engine.qlb
Enigne.bi

I want to add ffix to that..
The ffix files are:
Ffix.lib
Ffix.qlb
Ffix.obj
Ffix.asm

I did this to combine the two libs
LIB New.lib Engine.lib;
LIB New.lib + Ffix.lib;

But how can I combine the two qlb files?
You don't combine QLBs, QLBs are built out of your LIB file. So you combine your LIBs, then make the QLB out of the resulting LIB...

http://faq.qbasicnews.com/?blast=PushingTheLimitsOfQb
Oki, i tried it but it doesnt work, i'm sure i'm doing it wrong..
Here is what i did:
I got my self New.lib by combining Enigne.lib and Ffix.lib
Two new files was created, New.lib and New.Bak
Now what's the next step?

I did like in that tut:

LINK /Q New.BI,New.QLB,NUL,BQLB45.LIB

First of all that Bi file, is that the old one i had (Engine.bi) and New.qlb is the one that should be created?
Thank you, you made me find a bug. The correct command is:

Code:
LINK /Q New.LIB,New.QLB,NUL,BQLB45.LIB
Thx alot na_th_an, it works like a dream =)
Ya, but when you wake up, the program will crash :\
Is that so.. :lol: