Is there a way to show the keypad in uppercase letters only?
i have tried this method posted by Erel but it does not seem to work. No matter what number i plug in
http://www.b4x.com/forum/basic4android-updates-questions/9799-edittext-capitalization.html#post54300
This is the code i tried to test it with
the log results are
1) 524289
2) 8193
Any ideas?
i have tried this method posted by Erel but it does not seem to work. No matter what number i plug in
http://www.b4x.com/forum/basic4android-updates-questions/9799-edittext-capitalization.html#post54300
This is the code i tried to test it with
B4X:
Sub etProdCode_FocusChanged (HasFocus As Boolean)
Log(etProdCode.InputType)
etProdCode.InputType= Bit.Or(etProdCode.INPUT_TYPE_TEXT, 8192)
Log(etProdCode.InputType)
If HasFocus =True Then
etProdCode.Text=""
End If
End Sub
the log results are
1) 524289
2) 8193
Any ideas?
Last edited: