home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / TECLADO / KILL_KBD.ZIP / READ.ME < prev   
Encoding:
Text File  |  1988-08-10  |  1.6 KB  |  22 lines

  1. KTIME-XT.COM and KTIME-AT.COM are utilities which should have a wide variety
  2. of applications.  KTIME-XT is for XT and PC and compatibles.  KTIME-AT is for
  3. AT, Wyse 386 and compatibles.  KTIME allows you to completely turn off your
  4. keyboard for any number of seconds from 1 to 3600 (1 hour).  I will be using
  5. it at the beginning of a batch file to prevent user interference while setting
  6. up and executing an application.  Here is an example of usage...
  7. (On an XT)    KTIME-XT 130    this command would disable the keyboard for 130
  8. seconds, or 2 minutes 10 seconds.  If this was a line in a batch file, the
  9. subsequent commands in the batch file would be executed as normal (assuming
  10. no user keyboard input is required for 130 seconds).  KTIME kills the keyboard
  11. including Cntrl-C Break and CNTRL-ALT-DEL.  Keypresses made on the dead keybd.
  12. do not accumulate.  KTIME installs a new INT 8 routine.  INT 8 (timer tick) is
  13. executed 18.2 times per second.  KTIME counts each execution and when the sum
  14. equals the given time times 18.2 the keyboard is enabled.  KTIME is RAM
  15. resident and remains in RAM (occupying about 500 bytes) even after the kbd. is
  16. re-enabled, although the counting routine is short circuited after kbd. enable.
  17. Execution of KTIME without a time parameter will cause a default 2 minute
  18. keyboard disablement.  The parameter must be integer seconds.  Invalid param.
  19. will default to 2 minute disablement.  Avoid executing KTIME more than once.
  20. The timing is pretty accurate, but KTIME does not access the system clock so
  21. don't expect it to be as accurate as the system clock.  
  22.