0

Is there any way to disable the print screen key when running a python application?

Maybe editing the windows registry is the way?

Thanks!

  • 1
    you may be able to make or use an existing global keyboard hook and then listen for the print screen call and not pass it on down the chain, but i have no idea if that would work. – Jacobr365 Oct 02 '18 at 14:24

1 Answers1

0
  1. printscreen is OS Functionality.

  2. Their is No ASCII code for PrintScreen.

  3. Even their are many ways to take PrintScreen.

Thus, You can Disable keyboard but its difficult to stop user from taking PrintScreen.

M. D. P
  • 604
  • 2
  • 6
  • 18