06-06-2006, 05:48 PM
What if I use this code, that grim gave:
That wont work if the game isnt the target, like if they have pressed on notepad, and then take a screenshot of the whole thing. Then it wont work, because it will save it into memory and paste into paint?
Code:
Const VK_SNAPSHOT = &H2C
Private Sub Form_KeyUp(KeyCode As Integer, Shift As Integer)
If KeyCode = VK_SNAPSHOT Then
Clipboard.Clear
End If
End Sub
That wont work if the game isnt the target, like if they have pressed on notepad, and then take a screenshot of the whole thing. Then it wont work, because it will save it into memory and paste into paint?