Alberto Iglesias Well-Known Member Licensed User Longtime User Aug 3, 2016 #1 Anybody knows how in the TextField multiline and a lot of text (Log Field), how to scroll to the last characters in this text? Obs: This textfield is disable, I can scroll but not type in this
Anybody knows how in the TextField multiline and a lot of text (Log Field), how to scroll to the last characters in this text? Obs: This textfield is disable, I can scroll but not type in this
JanPRO Well-Known Member Licensed User Longtime User Aug 3, 2016 #2 Hi, TextField doesn't support multiline, so you have to use a TextView. Alberto Iglesias said: how to scroll to the last characters in this text? Click to expand... B4X: TV.ScrollTo(TV.Text.Length-1) Jan Upvote 0
Hi, TextField doesn't support multiline, so you have to use a TextView. Alberto Iglesias said: how to scroll to the last characters in this text? Click to expand... B4X: TV.ScrollTo(TV.Text.Length-1) Jan
Alberto Iglesias Well-Known Member Licensed User Longtime User Aug 3, 2016 #3 Hey JanPRO, works like a charm! Super thanks Alberto Upvote 0