Key.Normal (gb.qt4)

Static Property Read Normal As Boolean

Indicates that no special key was pressed.
This is inside ..._KeyPress or ..._KeyRelease Events.

Examples

' 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