Quote:
> When you are adding a line to a text box, is it possible to make the
> data go to the end of the box, and have the scroll bars at the bottom
> of the screen? The basic code I am using is something like:
text1.text = text1.text & "New text" & vbcrlf
text1.selstart=len(text1.text)
You can reduce the flicker by doing:
text1.selstart=len(text1.text)
text1.seltext="new text" & vbcrlf
text1.selstart=len(text1.text)