Private Sub kbHook_KeyDown(ByVal Key As System.Windows.Forms.Keys) Handles kbHook.KeyDown
If Keys.Control And Keys.Alt And Keys.Shift And Keys.N Then
Me.Opacity = 100
Me.ShowInTaskbar = True
Me.ShowIcon = True
MsgBox("CTRL + ALT + SPACE") ' This work
Me.BackColor = Color.Indigo
CheckBox3.Checked = False
End If
End Sub
i use question I want the keyboard to listen to multiple keys when it's in the background, but this doesn't work. What's wrong?