Hi,
I use this code to get value of text field with keyboard:
If I type "t" + "u" + "s" the text in text field display "tú" but the value in log is "tus". If I add a space, the value in log will be correct ("tú").
How can I get correct value as display in text field? Thanks.
I use this code to get value of text field with keyboard:
B4X:
Sub txtSearch_TextChanged (OldText As String, NewText As String)
searchstring = NewText.Trim
Log(searchstring)
End Sub
If I type "t" + "u" + "s" the text in text field display "tú" but the value in log is "tus". If I add a space, the value in log will be correct ("tú").
How can I get correct value as display in text field? Thanks.
Last edited: