How to disable the Keyboard until Reboot
Posted on January 5, 2009
1 2 3 4 5 6 7 8 9 | 'System & API - How to disable the Keyboard until Reboot Option Explicit 'Warning: After running this code, the keyboard will be disabled. It will be functional again 'only after you reboot your computer! Private Sub Main() Shell "rundll32 keyboard,disable" End Sub |