When I use textbox.appendtext(buff), buff is successfully appended to the textbox and the textbox automatically scrolls.
However, there seems to be a limit... the scrolling stops (as does the data being appended) after a certain amount of data is appended.
I have the maxlength set to 0 and have also tried setting it to 1,000,000.
I have resorted to:
textbox.text+=buff
textbox.selectionstart=txtbox..text.length
textbox.scrolltocaret()
Unfortunately, that scrolls the text all the way to the beginning and then back to the end everytime which causes undesirable flashing.
Does anyone know why the appendtext method is limited