home *** CD-ROM | disk | FTP | other *** search
/ Mega CD-ROM 1 / megacd_rom_1.zip / megacd_rom_1 / MENU / FSTMNU52.ZIP / FMTASK.DOC < prev    next >
Text File  |  1990-04-22  |  2KB  |  25 lines

  1.  
  2.       ┌───────────────────────────────────────────────────────────────┐
  3.       │ FMTASK.COM - This little program accepts a single keystroke   │
  4.       │              and sets the error level on return to DOS.       │
  5.       │              I know everyone has one of these!  Here's mine.  │
  6.       ├───────────────────────────────────────────────────────────────┤
  7.       │ Syntax:   FMTASK <prompt> <$valid-responses>                  │
  8.       │                                                               │
  9.       │ Example:  FMTASK Is this a nifty program? $YN                 │
  10.       │           If ErrorLevel 89 If Not ErrorLevel 90 Echo YES!     │
  11.       │           If ErrorLevel 78 If Not ErrorLevel 79 Echo NO??     │
  12.       │                                                               │
  13.       │ Both <prompt> and <$valid-responses> are optional.            │
  14.       │ If a neither is supplied, FMTASK simply waits for a key       │
  15.       │ to be pressed and returns an ErrorLevel equal to the ASCII    │
  16.       │ code of the key pressed.  Valid response keys are denoted     │
  17.       │ with a "$".  Any other key will produce a beep only.          │
  18.       │ If a string of valid responses is not supplied, FMTASK will   │
  19.       │ accept any key pressed and then return the ASCII code.        │
  20.       │ The valid response characters are converted to upper case     │
  21.       │ as well as any keys pressed.  (i.e. you can not receive       │
  22.       │ any ASCII codes for lower case letters.)                      │
  23.       └───────────────────────────────────────────────────────────────┘
  24.  
  25.