Hey all,
I've written an app with a textbox that I hope to have scroll to the bottom as I add information to it (a terminal window that shows processing information).
All the info I can find on this issue says to add
text1.selstart=len(text1.text)
and possibly
text1.selLength=0
This does not work. I still have to scroll the textbox manually, at which time I can see the selection carrot at the bottom of the textbox. Is there a way to have the textbox scroll with text as it is added? Do I possibly have to change on of this textbox's properties?
I've written an app with a textbox that I hope to have scroll to the bottom as I add information to it (a terminal window that shows processing information).
All the info I can find on this issue says to add
text1.selstart=len(text1.text)
and possibly
text1.selLength=0
This does not work. I still have to scroll the textbox manually, at which time I can see the selection carrot at the bottom of the textbox. Is there a way to have the textbox scroll with text as it is added? Do I possibly have to change on of this textbox's properties?