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