crrrazydan
Programmer
I am using the following code to update a textbox that has a vertical scroll bar:
text1.text = text1.text & newinfo & vbNewLine
The problem is whenever the textbox is updated, it scrolls all the way up, making you have to scroll down to see what was just put into the text box. So, is there a way to make it scroll down with the text1.changed event, or a better way to write the above code so it won't scroll up? By the way, I don't want to use SendKeys because it has to work even the textbox and form are out of focus.
text1.text = text1.text & newinfo & vbNewLine
The problem is whenever the textbox is updated, it scrolls all the way up, making you have to scroll down to see what was just put into the text box. So, is there a way to make it scroll down with the text1.changed event, or a better way to write the above code so it won't scroll up? By the way, I don't want to use SendKeys because it has to work even the textbox and form are out of focus.