home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / batch / keyline.arj / KEYLINE.DOC next >
Text File  |  1991-08-17  |  2KB  |  49 lines

  1. From the DOS prompt :
  2. drive:\path\keyline <batch file>/<dos command>/<prompt string>
  3.  
  4. This program creates a one line batch file <batch file>, which must 
  5. contain the extension ".bat", to capture and act on keyboard input to 
  6. allow the operator to control batch files. Please use the forward 
  7. slash "/" to seperate the strings, otherwise a file creation error 
  8. will occur. It may be used at will in the prompt string as the first 
  9. two occurances are the significant ones for program control.
  10.  
  11. The entered string is limited to, with the <dos command>, to a total 
  12. length of 255 bytes. The program prevents the output string from 
  13. exceeding this length.
  14.  
  15. Exiting.
  16.  
  17. The program exits with the following errorlevels:-
  18.  
  19. 0  -  Program terminated normally.
  20. 1  -  Command tail error.
  21.         (Sounds console bell once.)
  22. 2  -  New batch file not created for some reason.
  23.         (Soumds console bell twice.)
  24.  
  25. Usage.
  26.  
  27. This program must be called from within a batch file and followed by
  28. a line which calls the created <batch file> file, but not before any 
  29. errorlevel trapping is done to catch errors produced by this program.
  30.  
  31. A sample batch file might look like this (<drive:\path\> is assumed to 
  32. be current directory, so excluded from sample):
  33.  
  34. ....
  35. ....
  36. keyline keydir.bat/dir/Enter directory : 
  37. rem                                     ^ space here not compulsory.
  38. if errorlevel 1 goto CALLPASS
  39. rem         errorlevel 1 checking will also trap level 2 errors.
  40. call keydir
  41. rem         use of the "call" dos command is compulsory unless you
  42. rem        want your batch file to terminate after execution.
  43. :CALLPASS
  44. .....
  45. .....
  46.  
  47. Do not use a batch file called "keyline" unless the batch file is 
  48. operated from a different directory to the program "keyline".
  49.