Page 1 of 1

QB/VBDOS IntX library name?

Posted: Sat Mar 14, 2009 1:22 pm
by Harry Potter
What is the name of the QB4.5/VBDOS 1.0 library that includes InterruptX?

Posted: Sat Mar 14, 2009 2:59 pm
by burger2227
You don't need to call a certain Library for those. Use a batch or shortcut and use QB.EXE /L. This will load the proper libraries like QB.QLB also.

If you need to use a TYPE for Interrupt routines Include QB.BI at the beginning of the module:

Code: Select all

 '$INCLUDE: 'QB.BI'   'comment or use REM instead of apostrophies
InterruptX just uses two extra Type variables as you can see in the QB.BI file. It is text readable with Notepad. It also has older ways to access Interrupts without a TYPE.

Ted

Posted: Tue Mar 17, 2009 11:45 am
by Harry Potter
What if I want to use the Common Dialog Box or my own library with a program? I want to use it for both QB4.5 and VBDOS 1.0.

Posted: Tue Mar 17, 2009 4:52 pm
by burger2227
Not sure about VBDOS, but VB6 includes the DLL files in the package. I would imagine that the final program would have handled that call problem. You just have to include those libraries.

I could be wrong. Show me how to use a "Common Dialog Box" dll in QB.
That would be interesting!

Ted

Posted: Wed Apr 01, 2009 11:39 am
by Harry Potter
Little of this helps. I need the name of the library in QB4.5 and VBDOS 1.0 that contains the InterruptX procedure.

Posted: Thu Apr 02, 2009 1:13 am
by burger2227
QB.LIB in QB4.5 or QBX.LIB in PDS 7.

Posted: Fri Apr 03, 2009 10:48 am
by Harry Potter
What about VBDOS Pro 1.0? VBDOS.QLB?

Posted: Thu Apr 09, 2009 4:54 pm
by MystikShadows
Yup, that would be the one :)

Posted: Fri Apr 10, 2009 10:22 am
by Harry Potter
Thank you.

Posted: Sat Apr 18, 2009 1:06 am
by OPRESION