moore_it Well-Known Member Licensed User Longtime User Oct 31, 2018 #1 Hello, it's possible to manage the textfield cursor ? Move at third char or at end or at start of the text for example ? Thanks in advice
Hello, it's possible to manage the textfield cursor ? Move at third char or at end or at start of the text for example ? Thanks in advice
stevel05 Expert Licensed User Longtime User Oct 31, 2018 #2 B4X: TextField1.SetSelection(3,3) TextField1.SetSelection(TextField1.Text.Length,TextField1.Text.Length) TextField1.SetSelection(0,0) Upvote 0
B4X: TextField1.SetSelection(3,3) TextField1.SetSelection(TextField1.Text.Length,TextField1.Text.Length) TextField1.SetSelection(0,0)