KeyboardStatus                                                        Global

KeyboardStatus=False|True

KeyboardStatusChanged

Description

KeyboardStatus is a global variable that sets or gets whether the on screen keyboard appears on Windows Mobile devices. If it is False, then no keyboard is shown. A value of True means the on screen keyboard is present.

If the state of the on screen keyboard is changed, the KeyboardStatusChanged event is sent to the program

Example

REM KeyboadStatus Example

PRINT KeyboardStatus

IF KeyBoardStatus=False THEN KeyBoardStatus=True
ELSE KeyBoardStatus=True

SUB keyboardStatusChanged

  MSGBOX "Keyboard Status Changed"

END SUB

Output

(keyboard appears or disappears from view)

Related Items