How would I automaticaly scroll to the bottom of a multiline textbox? thanks a bunch!
Use the Textbox's SelStart property. Code: Text1.SelStart = Len(Text1.Text)
Text1.SelStart = Len(Text1.Text)
Forum Rules