I need to detect when a combination of keys is pressed when the form is hidden
VB Code:
  1. Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
  2.  If KeyCode = vbKeyTab And Shift = 2 Then
  3.    MsgBox "hi"
  4.    End If
  5. End Sub
Works fine when the form is visable, but will not work when the form is hidden (this code detects when ctrl and tab are pressed together)

Any ideas?