home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / dosutils / quikmenu.arj / QUIKMENU.DOC < prev    next >
Encoding:
Text File  |  1991-11-14  |  3.4 KB  |  108 lines

  1.        ==============================================================
  2.        -*- QUIKMENU Ver1.00  -*- Copyright (c) Glen Sibley - 1991 -*-
  3.        ==============================================================
  4.  
  5.        QUIKMENU   provides the ability to produce very user friendly
  6.        menu systems easily.
  7.  
  8.        The system uses simple a simple batch file and small text file
  9.        to create menus.
  10.  
  11.        If you have a colour screen then menus are displayed in colour
  12.        otherwise mono attributes are used to good effect.
  13.  
  14.        There are two example files provided.
  15.  
  16.        MAINMENU.BAT  The batch file that calls QUIKMENU and controls
  17.                      the selection process.
  18.                      You may copy MAINMENU.BAT to another name then
  19.                      edit it to suit your needs.
  20.  
  21.        MAINMENU.MNU  The text file that contains the items displayed
  22.                      in the menu.
  23.                      You may copy this file to another name and edit
  24.                      it to suit your needs.
  25.                      This file must have a maximum of 13 lines.
  26.                      The first line in this is the System Title.
  27.                      The second line is name of the menu.
  28.                      The remaining lines are the selectable menu items.
  29.  
  30.  
  31.        You may either view these files on screen using the MS DOS TYPE
  32.        command as follows.
  33.  
  34.        TYPE MAINMENU.BAT | MORE
  35.        TYPE MAINMENU.MNU | MORE
  36.  
  37.        You may print out these files using the MS DOS COPY command as
  38.        follows......
  39.  
  40.        COPY MAINMENU.BAT PRN
  41.        COPY MAUNMENU.MNU PRN
  42.  
  43.        The file MAINMENU.BAT includes REM statements to indicate the
  44.        areas where you would insert your own directory names or program
  45.        run commands.
  46.  
  47.        The Syntax of the line calling the QUIKMENU program is as follows.
  48.  
  49.        QM MAINMENU        where MAINMENU is the name of the .MNU file, do
  50.                           not add the extension .MNU as the programm does
  51.                           this by default.
  52.  
  53.        When creating a .MNU file please note that the first line is the
  54.        name of the system -  this may be left balnk if desired but must
  55.        be in the file.
  56.        The second line is the name of the menu concerned and may be left
  57.        blank if desired. This is not recommended because if you use more
  58.        than one menu the name gives an indication of which area you are
  59.        working with.
  60.        The Menu Selection Items start on line 3 !!.
  61.  
  62.        A maximum of 11 items will fit onto the screen in any menu.
  63.        If there is a need for more than 11 items then one of the items
  64.        should be a call to another menu - different batch file and text
  65.        files names.
  66.        The program QUIKMENU will produce an error if more than 11 items
  67.        are included in the .MNU file and will display a message to that
  68.        effect.
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.        The label for this would look like .....
  84.  
  85.               ...
  86.               ...
  87.               IF ERRORLEVEL 5 GOTO MENU2
  88.               ...
  89.               ...
  90.               :MENU2
  91.               CLS
  92.               NEXTMENU
  93.               GOTO START
  94.               ...
  95.               ...
  96.  
  97.         NEXTMENU.BAT and NEXTMENU.MNU would be the names of the menu to
  98.         be displayed.
  99.  
  100.         NEXTMENU may also have a call back to MAINMENU as an option to
  101.         redisplay your original menu.
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.