This is probably asked before, but i can't find any answers.
is there a way to capture the keypressed when my application is minimized.
i used this
this works when my application is focused, but when in taskbar or not active it handles the function that other apps have assigned to the keys.
Greetz
is there a way to capture the keypressed when my application is minimized.
Visual Basic:
Protected Overrides Sub OnKeyDown(ByVal e As System.Windows.Forms.KeyEventArgs)
If e.KeyValue = Keys.Shift and e.KeyValue = Keys.M Then
MsgBox("Test")
End If
End Sub
i used this
this works when my application is focused, but when in taskbar or not active it handles the function that other apps have assigned to the keys.
Greetz