I am trying to have the keyboard pop up automatically on a textbox. Here is my code:
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("Calculator")
Units.Text = ""
If Glucose.RequestFocus Then
End Sub
This works perfectly in Debug mode but the keyboard does not appear in Release mode.
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("Calculator")
Units.Text = ""
If Glucose.RequestFocus Then
Dim Keybd As IME
Keybd.Initialize("IME")
Keybd.ShowKeyboard(Glucose)
End IfKeybd.Initialize("IME")
Keybd.ShowKeyboard(Glucose)
End Sub
This works perfectly in Debug mode but the keyboard does not appear in Release mode.