I activated the IME library
Sub Globals
oIME as ime
end sub
sub activity_create(firstime as boolean)
oIME.Initialize("Keyboard")
end sub
if a radiobutton is clicked than I set the focus on a textbox and then want the keyboard to appear automatically. It speeds up user interaction.
sub radioCustom_checkedchange(checked as boolean)
txtTruckNumber.requestfocus 'works
oIME.ShowKeyboard(activity) 'fails
end sub
Sub Globals
oIME as ime
end sub
sub activity_create(firstime as boolean)
oIME.Initialize("Keyboard")
end sub
if a radiobutton is clicked than I set the focus on a textbox and then want the keyboard to appear automatically. It speeds up user interaction.
sub radioCustom_checkedchange(checked as boolean)
txtTruckNumber.requestfocus 'works
oIME.ShowKeyboard(activity) 'fails
end sub