For some reason my textbox does not scroll to the end of its content.
my code:
my code:
Code:
Private Sub txtConsole_TextChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles txtConsole.TextChanged
txtConsole.SelectionStart = txtConsole.TextLength
txtConsole.ScrollToCaret()
End Sub