Textbox scrollbar 自動捲到最下面
C#
textbox1.SelectionStart = textbox1.Text.Length;
textbox1.ScrollToCaret();
textbox1.Refresh();
VB.NET
textbox1.SelectionStart = textbox1.Text.Length
textbox1.ScrollToCaret()
textbox1.Refresh()
打開文字檔
System.Diagnostics.Process.Start(@"text.txt");