home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / basic / tools / numadd / fromjohn.bat < prev    next >
DOS Batch File  |  1994-04-03  |  1KB  |  28 lines

  1. @echo off
  2. goto Start                    ┌────────────────
  3.                               │                █
  4.                               │  FROMJOHN.BAT  █
  5.                               │                █
  6.                                 ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█
  7.  
  8.                            Mon  04-04-1994  00:18:17
  9.  
  10.      This batch file just loads the text file using my littlest
  11.      QuickBASIC file loader READ.COM. I started using Microsoft's
  12.      Assembly language software (MASM). In that set of files there is an
  13.      Assembly file loader that looks -just like- READ.COM. It is 5700
  14.      bytes long. READ.COM is 8217 bytes! READ.COM is written in
  15.      QuickBASIC and compiled with Crescent's PDQ software. So don't let
  16.      the Assembly or "C" meowers brag too much about "being small" to
  17.      you QuickBASIC cats.
  18.  
  19.      The "/n" switch after the file name suppresses the "brag-box." You
  20.      can then use READ.COM to load text files into your batch files
  21.      without the user being distracted by my brag-box when he/she exits
  22.      READ.COM. The only way you can see the brag-box is by loading a
  23.      file without the "/n" switch. You can even use a factitious file
  24.      name or an executable file, READ.COM doesn't care....
  25.  
  26. :Start
  27. @read addnum.txt/n
  28.