home *** CD-ROM | disk | FTP | other *** search
/ Hall of Fame / HallofFameCDROM.cdr / pcmag / browse.lzh / BROWSE.DOC < prev   
Text File  |  1988-11-24  |  4KB  |  80 lines

  1.           Browse                                 Charles Petzold
  2.           _______________________________________________________
  3.  
  4.           Purpose   Permits scrolling forward and backward
  5.                     throughout a file without use of a word
  6.                     processing program.
  7.  
  8.           Format:   BROWSE [d:][path]filename[.ext] [/W]
  9.  
  10.           Remarks:  The DOS TYPE command does not permit you to
  11.                     scroll ahead or go back to previously
  12.                     displayed material in a file.  It also exits
  13.                     at the first instance of Ctrl-Z (ASCII 26,
  14.                     conventionally used as an End-of-File
  15.                     marker), making it impossible to scan binary
  16.                     (e.g. .COM) files for error messages,
  17.                     copyright notices, and the like.
  18.  
  19.                     BROWSE.COM overcomes these shortcomings,
  20.                     giving you the chance to go immediately to
  21.                     the top or to the end of a file (the Home and
  22.                     End keys, respectively), to the succeeding or
  23.                     previous screen (PgUp and PgDn), or to move
  24.                     up or down a line at a time (Up Arrow or Down
  25.                     Arrow).  To return to DOS, simply press the
  26.                     Escape key or Ctrl-Break.
  27.  
  28.                     Wide displays, e.g. a spreadsheet file, are
  29.                     not broken at 80 columns, as with TYPE.
  30.                     BROWSE ignores carriage returns (ASCII 13),
  31.                     breaking lines only on line feeds (ASCII 10).
  32.                     The Right Arrow key scrolls the display to
  33.                     the right in eight-character increments (see
  34.                     Note 3 below) to view wide displays; the Left
  35.                     Arrow key returns you immediately to column
  36.                     zero.
  37.  
  38.                     BROWSE expands tab characters (ASCII 9) to
  39.                     the next eight-character boundary, but does
  40.                     no other character processing unless the /W
  41.                     parameter is specified.  Use of the /W option
  42.                     permits using BROWSE with WordStar files.
  43.  
  44.                     Notes:
  45.  
  46.                     1.   BROWSE can run under TopView or Windows;
  47.                          specify "writes directly to screen" in
  48.                          the .PIF and use the default 52K memory
  49.                          requirement.  (The program actually
  50.                          requires only approximately 33K to run.)
  51.                          For the TopView PIF, specify that the
  52.                          program intercepts Interrupt 23h.
  53.  
  54.                     2.   BROWSE is compatible with the IBM
  55.                          monochrome, CGA, and EGA displays, and
  56.                          will even run in the EGA 43-line mode.
  57.                          Files prepared with word-processors that
  58.                          employ a one-line-per-paragraph format
  59.                          (such as Microsoft Word and XyWrite) may
  60.                          to require excessive right scrolling,
  61.                          however.
  62.  
  63.                     3.   BROWSE.COM can be patched with DEBUG so
  64.                          that its right-scroll jumps by more than
  65.                          the default eight characters.  The
  66.                          address to patch is 10F in the .COM
  67.                          file.  After entering DEBUG BROWSE.COM
  68.                          type
  69.  
  70.                               E 10F
  71.  
  72.                          and the default value (08h) will appear.
  73.                          Type the desired hexadecimal number (28
  74.                          for a 40-column increment; 50 for an 80-
  75.                          column increment) and press <Enter>.
  76.                          Then type W<Enter> to write to the disk
  77.                          and Q<Enter> to quit DEBUG.
  78.  
  79.                     4.   Requires DOS 2.0 or later.
  80.