As stated in my subject line ... when I am moving to next field my cursor is at the beginning of the word instead of end and the word is not selected and I need it to be
How do I correct this?
************************ I got it guys
I was able to do it with this ... perhaps there is an easier way but this made it work
How do I correct this?
************************ I got it guys
I was able to do it with this ... perhaps there is an easier way but this made it work
B4X:
Sub etMake_FocusCHanged (HasFocus As Boolean)
If HasFocus Then
etMake.SelectionStart=etMake.Text.Length
etMake.SelectAll
End If
End Sub
Last edited: