[ASP.Net] avento keydown crh13 enter

visualrenzo

Nuovo Utente
1 Feb 2019
6
0
1
Buongiorno a tutti, ho un form padre con diversi form figli.
Vorrei che il form padre attraverso un timer ogni secondo si accorga se sto passando una card NFC su un cardreader per poter poi aprire un form con Username e password.

Avrei iniziato a fare questo, intercettare l' enter che c' è alla fine del TAG nfc.

Il mio problema è che la casella text box non deve esistere veramente ne creo l' Hendler via codice.

questo perchè non sono capace a fare una funzione che intercetta il Keydown

Codice:
Private Sub txtPassword_PreviewKeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.PreviewKeyDownEventArgs) Handles txtPassword.PreviewKeyDown
    If e.KeyCode = Keys.Enter Then
       'apro un form con user e password
    End If
End Sub
 

Discussioni simili