home *** CD-ROM | disk | FTP | other *** search
/ Computerworld 1996 March / Computerworld_1996-03_cd.bin / idg_cd3 / nastroje / clipbrd / clipca14 / clipread.doc < prev    next >
Text File  |  1996-02-14  |  3KB  |  64 lines

  1. CLIPREAD - Read Windows Clipboard from DOS
  2. ------------------------------------------
  3. Version 1.01 - February 20, 1995
  4. Copyright (c) 1994, Brian Sawert
  5.  
  6.  
  7.  
  8. Purpose:    CLIPREAD.EXE is a DOS utility that reads text from
  9.             the Windows clipboard and prints it to the DOS standard
  10.             output.  CLIPREAD is run from within a Windows DOS box
  11.             or from the Windows command line.  The output from
  12.             CLIPREAD may be redirected to a file.
  13.  
  14. Usage:      CLIPREAD [/q] [> file]
  15.  
  16. Options:    The /q option suppresses output messages.
  17.  
  18. Examples:   CLIPREAD > CLIP.TXT
  19.  
  20.             copies the contents of the Windows clipboard to the
  21.             file CLIP.TXT.
  22.             
  23.             CLIPREAD
  24.  
  25.             prints the contents of the clipboard to the screen.
  26.  
  27.  
  28. Notes:      CLIPREAD runs from the DOS prompt under Windows 3.0 or
  29.             above.  Windows must run in 386 Enhanced mode for the
  30.             clipboard to be available to DOS programs.  Since the
  31.             clipboard is shared among other Windows programs, you
  32.             may occasionally get a message that the clipboard is not
  33.             available.
  34.  
  35.             CLIPREAD reads only text from the clipboard.  Binary
  36.             data is not supported.
  37.  
  38.             The Windows command line (the Run...  option under the
  39.             Program Manager File menu) does not support output
  40.             redirection.  To run CLIPREAD from the command line,
  41.             you must invoke the DOS command processor.  For
  42.             example,
  43.                 
  44.             COMMAND /C CLIPREAD > CLIP.TXT
  45.                         
  46.             runs COMMAND.COM to properly redirect the output from
  47.             CLIPREAD to the file CLIP.TXT.  If you run a batch
  48.             file containing a CLIPREAD command, you do not need
  49.             this special syntax.
  50.                 
  51.             CLIPREAD is copyrighted free software.  You may use it
  52.             and pass it on without charge, but please include the
  53.             documentation file if you make copies of the program.
  54.                 
  55.             If you find CLIPREAD useful, or have any questions or
  56.             suggestions, please feel free to contact the author by
  57.             mail or e-mail.
  58.  
  59.                      Brian Sawert
  60.                      1109 S. Plaza Way #427
  61.                      Flagstaff, AZ 86001
  62.                      Compuserve:  72027, 2143
  63.                      Internet:  bsawert@primenet.com
  64.