Key.Normal (gb.qt4)
Static Property Read Normal As Boolean
Indica che non è stato premuto alcun tasto speciale.
Questo è all'interno degli eventi ..._ KeyPress o ..._ KeyRelease.
Esempio
' Serve un Button1; con il focus su di esso (Usa il tasto Tab).
' puoi copiare e incollare questo esempio.
PUBLIC SUB Button1_KeyPress()
IF Key.Normal THEN
Button1.Text = " True " & CString(Time)
ELSE
Button1.Text = " False " & CString(Time)
ENDIF
END