Key.Normal (gb.qt4)
Static Property Read Normal As Boolean
Indique qu'aucune touche spéciale est appuyée.
Ceux-ci est à l'intérieur de l'évènement ..._KeyPress ou ..._KeyRelease.
Exemples
' Needing a Button1; with the focus on it( Use the Tab key).
' can cut and Paste this example.
PUBLIC SUB Button1_KeyPress()
IF Key.Normal THEN
Button1.Text = " True " & CString(Time)
ELSE
Button1.Text = " False " & CString(Time)
ENDIF
END