QB/VBDOS IntX library name?

If you have questions about any aspect of QBasic programming, or would like to help fellow programmers solve their problems, check out this board!

Moderators: Pete, Mods

Post Reply
Harry Potter
Veteran
Posts: 111
Joined: Sat Feb 21, 2009 8:19 am
Location: New York, U.S.

QB/VBDOS IntX library name?

Post by Harry Potter »

What is the name of the QB4.5/VBDOS 1.0 library that includes InterruptX?
User avatar
burger2227
Veteran
Posts: 2466
Joined: Mon Aug 21, 2006 12:40 am
Location: Pittsburgh, PA

Post 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
Please acknowledge and thank members who answer your questions!
QB64 is a FREE QBasic compiler for WIN, MAC(OSX) and LINUX : https://www.qb64.org/forum/index.php
Get my Q-Basics demonstrator: https://www.dropbox.com/s/fdmgp91d6h8ps ... s.zip?dl=0
Harry Potter
Veteran
Posts: 111
Joined: Sat Feb 21, 2009 8:19 am
Location: New York, U.S.

Post 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.
User avatar
burger2227
Veteran
Posts: 2466
Joined: Mon Aug 21, 2006 12:40 am
Location: Pittsburgh, PA

Post 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
Please acknowledge and thank members who answer your questions!
QB64 is a FREE QBasic compiler for WIN, MAC(OSX) and LINUX : https://www.qb64.org/forum/index.php
Get my Q-Basics demonstrator: https://www.dropbox.com/s/fdmgp91d6h8ps ... s.zip?dl=0
Harry Potter
Veteran
Posts: 111
Joined: Sat Feb 21, 2009 8:19 am
Location: New York, U.S.

Post 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.
Joseph Rose, a.k.a. Harry Potter
Creating magic in the computer community...or at least striving to! :(
User avatar
burger2227
Veteran
Posts: 2466
Joined: Mon Aug 21, 2006 12:40 am
Location: Pittsburgh, PA

Post by burger2227 »

QB.LIB in QB4.5 or QBX.LIB in PDS 7.
Please acknowledge and thank members who answer your questions!
QB64 is a FREE QBasic compiler for WIN, MAC(OSX) and LINUX : https://www.qb64.org/forum/index.php
Get my Q-Basics demonstrator: https://www.dropbox.com/s/fdmgp91d6h8ps ... s.zip?dl=0
Harry Potter
Veteran
Posts: 111
Joined: Sat Feb 21, 2009 8:19 am
Location: New York, U.S.

Post by Harry Potter »

What about VBDOS Pro 1.0? VBDOS.QLB?
Joseph Rose, a.k.a. Harry Potter
Creating magic in the computer community...or at least striving to! :(
MystikShadows
Veteran
Posts: 703
Joined: Sun Nov 14, 2004 7:36 am
Contact:

Post by MystikShadows »

Yup, that would be the one :)
When God created light, so too was born, the first Shadow!

MystikShadows

Need hosting? http://www.jc-hosting.net

Interested in Text & ASCII development? Look no further!
http://www.ascii-world.com
Harry Potter
Veteran
Posts: 111
Joined: Sat Feb 21, 2009 8:19 am
Location: New York, U.S.

Post by Harry Potter »

Thank you.
Joseph Rose, a.k.a. Harry Potter
Creating magic in the computer community...or at least striving to! :(
OPRESION
Veteran
Posts: 61
Joined: Tue Jan 16, 2007 4:15 am
Location: Mexico

Post by OPRESION »

MY PAGE: http://Qbasic.phatcode.net" target="_blank
(I ONLY USE WINDOWS 98SE YET, BELIEVE IT OR NOT)
Post Reply