private void rtbLog_TextChanged(object sender, EventArgs e)
{
rtbLog.SelectionStart = rtbLog.Text.Length; //Set the current caret position at the end
rtbLog.ScrollToCaret(); //Now scroll it automatically
}
private void rtbLog_TextChanged(object sender, EventArgs e)
{
rtbLog.SelectionStart = rtbLog.Text.Length; //Set the current caret position at the end
rtbLog.ScrollToCaret(); //Now scroll it automatically
}