No, il TAB nn viene riconosciuto.

Puoi usare questa API:

codice:
Private Declare Function GetKeyboardState Lib "user32" (pbKeyState As Byte) As Long

Private Sub Command1_Click()
Dim Buffer(255) As Byte
Call GetKeyboardState(Buffer(0))
If Buffer(Asc(vbTab)) <> 0 Then
    MsgBox "Tasto Tab Premuto!"
End If
End Sub