home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / MOUSE / MSMOUSE1.ZIP / BAS.ZIP / README.TXT < prev    next >
Encoding:
Text File  |  1989-02-09  |  1.5 KB  |  32 lines

  1. Quick Libraries
  2.  
  3. The QuickBASIC programs in the Microsoft Mouse Programmer's Reference
  4. use subprograms found in three libraries.  Programs that call the
  5. INTERRUPT or ABSOLUTE subprograms require that QB.QLB be loaded into
  6. the QuickBASIC environment or that QB.LIB be linked with the program.
  7. Programs that call MOUSE must access MOUSE.LIB. Programs that call EGA
  8. must access EGA.LIB.  Combine these libraries, as needed, into a Quick
  9. Library for running the programs in the QuickBASIC environment.  To
  10. link the programs into .EXE modules, list the libraries in the linker
  11. command.
  12.  
  13. The following two commands will combine all the libraries used in
  14. the Microsoft Mouse Programmer's Reference into a Quick Library named
  15. QBNEW.QLB and a combined linkable library named QBNEW.LIB.  All the
  16. QuickBASIC programs in the book will run when QBNEW.QLB is loaded into
  17. the QuickBASIC environment or QBNEW.LIB is linked with the individual
  18. program.
  19.  
  20. LINK /QU /NOE MOUSE.LIB+EGA.LIB+QB.LIB,QBNEW.QLB,NUL,BQLB45.LIB;
  21. LIB QBNEW.LIB+MOUSE.LIB+EGA.LIB+QB.LIB;
  22.  
  23. You can build a Quick Library and a combined library that contain just
  24. those libraries required for a given program.  For example, several of
  25. the example programs in this book require that QBMOUSE.QLB be loaded
  26. into the QuickBASIC environment.  To create this Quick Library and the
  27. accompanying combined library QBMOUSE.LIB, use the following two commands:
  28.  
  29. LINK /QU /NOE MOUSE.LIB,QBMOUSE.QLB,NUL,BQLB45.LIB;
  30. LIB QBMOUSE.LIB+MOUSE.LIB;
  31.  
  32.