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
I did lookup those codes and tried many of them. 8192 was the last one that i had tried
I was actually using 4096
public static final int TYPE_TEXT_FLAG_CAP_CHARACTERS
Since: API Level 3
Flag for TYPE_CLASS_TEXT: capitalize all characters. Overrides TYPE_TEXT_FLAG_CAP_WORDS and TYPE_TEXT_FLAG_CAP_SENTENCES. This value is explicitly defined to be the same as CAP_MODE_CHARACTERS.
Constant Value: 4096 (0x00001000)