home *** CD-ROM | disk | FTP | other *** search
/ Frostbyte's 1980s DOS Shareware Collection / floppyshareware.zip / floppyshareware / BOUT / FASTM202.ZIP / FASTHELP.009 < prev    next >
Text File  |  1990-11-14  |  8KB  |  186 lines

  1.  
  2.  
  3.     fastmenu PLUS BatchDOS Module.
  4.     =============================:>
  5.     You may access all options in either of two ways.
  6.  
  7.     1)-  Press the hot key of the prompt you want to access.
  8.  
  9.     2)-  Point the mouse at the option and then press the left mouse button.
  10.  
  11.          NOTE !  This option was added to give you a means of entering and
  12.                  running DOS commands from within fastmenu.  Also for
  13.                  creating or editing batch files. Entering commands in
  14.                  this editor is much like entering commands in a batch
  15.                  file and then may be executed by pressing F1. All commands
  16.                  that can be used in a batch file may be used in this
  17.                  command editor.  For this reason it may be useful for you
  18.                  to check your DOS manual on the valid commands that can be
  19.                  used with your version of DOS. Some batch file commands
  20.                  will not work with all versions of DOS.
  21.  
  22.          You are allowed up to 200 lines with up to 255 characters per line.
  23.  
  24.          Blank lines are not accepted and will cause a break in execution.
  25.  
  26.          Pressing ESC at the file list screen will return you to the editor
  27.          without loading any files.
  28.  
  29.          NOTE !    Just remember, using this option places you at the DOS
  30.                    level and could be very unforgiving if you entered
  31.                    commands that could be destructive.  There is no error
  32.                    checking at this level so make sure that what you type
  33.                    is accurate.
  34.  
  35.     Option                  Reaction to option
  36.     ~~~~~~                  ~~~~~~~~~~~~~~~~~~
  37.     ESC.................... This option will return you to fastmenu PLUS.
  38.  
  39.     F1 = Run............... This option will execute or run the commands
  40.                             that have been entered to the editor.
  41.  
  42.     F2 = Load.............. This option allows you to re-load saved batch
  43.                             files.
  44.  
  45.     F3 = Save.............. This option allows you to save batch files for
  46.                             later use. All batch files saved with this
  47.                             option will be saved to the current path.
  48.  
  49.     F4 = Clear............. This option will clear the editor screen.
  50.  
  51.     F5 = Print............. This option allows you to print batch files.
  52.  
  53.     F6 = Help.............. This option calls up this help screen.
  54.  
  55.     BatchDOS Editor Options.
  56.     =======================:>
  57.  
  58.     Home/End............... Move cursor to start/end of line.
  59.  
  60.     Ctrl-Home/End.......... Move cursor to top/bottom of screen.
  61.  
  62.     PgUp/PgDn.............. Display previous/next page.
  63.  
  64.     Ctrl-PgUp/PgDn......... Display first/last page.
  65.  
  66.     Ctrl-Left/Right........ Move cursor by whole words.
  67.  
  68.     Ctrl-Y................. Delete the current line.
  69.  
  70.     Ctrl-N................. Insert a new line.
  71.  
  72.     Insert................. Toggle insert mode on/off.
  73.  
  74.     Delete................. Delete character at cursor location and move
  75.                             text left one position.
  76.  
  77.     Backspace.............. Delete character at cursor location and move
  78.                             cursor left one position.
  79.  
  80.     Tab.................... Move cursor right four positions.
  81.  
  82.     Shift-Tab.............. Move cursor left four positions.
  83.  
  84.     Arrow Keys............. Move cursor one position in direction of arrow.
  85.  
  86.     Enter.................. Starts a new line.
  87.  
  88.     Block Copy and Past Commands.
  89.     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  90.     Use the Shift-Cursor keys to begin a block operation. To mark a column
  91.     use the Shift-Right and then Shift-Down. Once a block has been marked,
  92.     any key except the Escape will capture it to the paste buffer. If
  93.     Delete is pressed, the block will be captured and then deleted. Use
  94.     Shift-Insert to paste the block at the new location.
  95.  
  96.     To mark a block with the mouse, simply position the mouse cursor at the
  97.     beginning of the block and press the left mouse button. While the
  98.     button is down the cursor may be moved in any direction. If the mouse
  99.     is first moved up or down, marking is in "sentence" mode. To mark a
  100.     block in column mode move left or right first.
  101.  
  102.     A saved block may be pasted to the existing batch file or you may load
  103.     a new batch file and then paste the saved block to it.
  104.  
  105.     The text may be scrolled either by sliding the scroll bar diamonds at
  106.     the bottom and right, or by pressing on the arrow icons near the
  107.     bottom right and left corners. The window may be resized by pressing
  108.     on the lower right or top left corners, and then moving the mouse. A
  109.     reduced window may be moved about by placing the mouse on the ruler
  110.     bar and moving the mouse around while holding the left button down.
  111.     The window may be zoomed by clicking the left mouse button on the
  112.     arrow icon at the upper right.
  113.  
  114.     The following is some examples of BatchDOS use.
  115.  
  116.     Creating a new AUTOEXEC.BAT file.
  117.     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  118.           Move to the root directory of drive C: by typing:
  119.  
  120.           C:
  121.           CD\
  122.  
  123.           Press the F1 key
  124.  
  125.           This set of commands would switch you to the root directory of
  126.           drive C:. From here you would want to clear the editor screen
  127.           by pressing the F4 key. Then enter the commands to the editor
  128.           that you want in the batch file. After entering all the batch
  129.           file commands you would just press the F3 key to save and at
  130.           the Save as: prompt type in AUTOEXEC and then press enter.
  131.           A typical set of commands for an AUTOEXEC.BAT file would be:
  132.  
  133.           PATH=C:\;C:\DOS       < set up your path
  134.           PROMPT $p$g           < set your dos prompt
  135.           MOUSE                 < run your mouse software
  136.           FAST                  < automatically start FastMenu Plus
  137.           ---------------------------------------------------------
  138.  
  139.                  C:
  140.                  CD\
  141.  
  142.                  Press the F1 key
  143.  
  144.                  This set of command would switch the default drive/
  145.                  directory to C:\ (the root directory of drive C:). At
  146.                  this point pressing the F2 key would list all the batch
  147.                  files in the root directory. If you have an AUTOEXEC.BAT
  148.                  file you could load it into the editor by moving the
  149.                  highlight bar to it and then press enter. You could then
  150.                  edit or make any changes you want and then resave by
  151.                  pressing the F3 key.
  152.  
  153.                  NOTE !  The default drive/directory is continiously
  154.                          displayed at the upper left corner of your
  155.                          screen. When saving a file, this editor does not
  156.                          check to see if this file already exists and will
  157.                          automaticaly overwrite an existing file.
  158.                          Also if you make changes to your AUTOEXEC.BAT
  159.                          file you will need to re-boot your computer
  160.                          before any changes are recognized.
  161.  
  162.                  C:
  163.                  CD\DOS
  164.                  DIR/P
  165.                  PAUSE
  166.  
  167.                  Press F1
  168.  
  169.                  The above set of commands would change to the DOS directory
  170.                  then list all files pausing after each page.
  171.                  The default drive/directory would remain at C:\DOS.
  172.  
  173.                  B:
  174.                  COPY *.* A:
  175.                  A:
  176.                  DIR/P
  177.                  PAUSE
  178.  
  179.                  Press F1
  180.  
  181.                  The above set of commands would switch to drive B: then
  182.                  copy all files from drive B: to Drive A:. After copying
  183.                  all files it would switch to drive A: and list all files
  184.                  on drive A:, pausing after each page.
  185.                  The default drive/directory would remain at drive A:\.
  186.