How do I disable the Print Screen Key to the Windows Environment?
I'm trying this:
But, when I press the Print Screen Key the event isn't fired. *ONLY* with Print Screen Key!!!Code:Private Sub txtText_KeyDown(KeyCode As Integer, Shift As Integer) If KeyCode = vbKeyPrint or KeyCode = vbKeySnapshot then KeyCode = 0 End If End Sub
And it only applies to my application, not to the Windows Environment...
Thanks in advance,
Piazza


Reply With Quote