Thanks, Looks like that should help a lot.
One more question.
I threw a few lines into one of my projects to get the keyboard to popup and find that under normal conditions it is not showing up. If however I set a break point on that line then when I resume the keyboard does appear.
Sub Activity_Create(FirstTime As Boolean)
IME1.Initialize("IME1")
Activity.LoadLayout("scrSignIN")
modCommon.ResetUserFontScale(Activity)
txtEmployee.RequestFocus
IME1.ShowKeyboard(txtEmployee)
End Sub
If I set a breakpoint on the IME1.ShowKeyboard ... line then I get the keyboard when I resume execution
If I set the break point before that line I do not get the keyboard
If I omit the line above to request focus I do not get the keyboard even with the breakpoint on the IME line.
What am I missing?