home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / q / qbmenu10.zip / QBMENU!.DOC < prev    next >
Text File  |  1993-03-01  |  2KB  |  62 lines

  1. ┌────────────────────────────────────────────────────────────────┐
  2. │ >>>>>>>> QBMenu! 1.0                                           │
  3. │ <<<<<<<< (C) Copyright Victor Yiu, 1993.                       │
  4. │ >>>>>>>> released February 9, 1993  [ FidoNet QUIK_BAS echo ]  │
  5. │ <<<<<<<< User on: Hard Disc Cafe BBS (713) 589-2690 1:106/30   │
  6. └────────────────────────────────────────────────────────────────┘
  7.  
  8. Files in Archive:
  9. ─────────────────────────────────────────────────────────────────
  10. QBMENU!.DOC      2410  02-09-93  This file
  11. QBMENU!.BAS     28441  02-09-93  Menu program source code
  12. SAVESCRN.BI      1920  02-09-93  Include file for QBMENU
  13. BLIBQB.OBJ       7268  02-09-93  BOXLIB.OBJ for QuickBASIC 4.5
  14. BLIBVB.OBJ       7252  02-09-93  BOXLIB.OBJ for VB/DOS and PDS
  15.  
  16.  
  17. Introduction
  18. ─────────────────────────────────────────────────────────────────
  19.  
  20.     This is a very nice looking menu system written totally in
  21.     QB. It looks and feels 100% like QB.  Not a cheap
  22.     imitation!!! Just no rodent support.
  23.  
  24.     WARNING!  Please don't use any of QBMenu!'s code without
  25.     asking permission from me, Victor Yiu, especially if
  26.     money-making is involved.
  27.  
  28.  
  29. HOW TO GENERATE the LIB and the QLB needed to run this program:
  30. ─────────────────────────────────────────────────────────────────
  31.  
  32.   * For QuickBASIC:
  33.  
  34.         LIB BOXLIB +BLIBQB;
  35.         LINK /QUI BOXLIB.LIB,,NUL,C:\QB45\BQLB45;
  36.                                   ^^^^^^^^^^^^^^
  37.     Change the pathname of the BQLB45.LIB if necessary to your QB
  38.     directory.  After linking, you should have a .LIB and .QLB
  39.     file. Generating libraries are just a -one- time ordeal.
  40.  
  41.     This program has been tested with QB 4.5 and should work with
  42.     PDS.
  43.  
  44.   * For VisualBASIC & PDS:
  45.  
  46.         LIB BOXLIB +BLIBVB;
  47.         LINK /QUI BOXLIB.LIB,,NUL,C:\VB\{QLB for VB};
  48.                                   ^^^^^^^^^^^^^^^^^
  49.  
  50.     VB/DOS has OBJect file compatibilities with QB, therefore a
  51.     VB-compiled version of the OBJ is herewith.
  52.  
  53.     VB/DOS already has built-in pull-down menus, but using this
  54.     program will save about 100K of your EXE size!
  55.  
  56.     PDS users: replace BLIBVB with BLIBPDS.
  57.  
  58. Changing what the menu choices do
  59. ─────────────────────────────────────────────────────────────────
  60.     It is in the sub MAIN.
  61.     What you should change is clearly marked.
  62.