ChangeInputMode
Previous Top Next

Changes the Smartphone input mode.
This method should be called on the GotFocus event of a TextBox control.
Syntax: ChangeInputMode (Numeric As Boolean)
Numeric - If true then numbers mode will be selected, otherwise the alphabet mode will be selected.

Example:
Sub TextBox1_GotFocus
            Hardware1.ChangeInputMode(True)
End Sub