因此,在运行以下代码后,我的所有文本都会在文本框中突出显示。
Dim ioFile As New System.IO.StreamReader("FilePath")
TextBox1.Text = ioFile.ReadToEnd()
有没有办法不选择所有文字? BTW,它是一个多行文本框。
答案 0 :(得分:2)
使用“选择方法”删除选择。
'Cursor at beginning of text.
TextBox1.Select(0, 0)
'Cursor at end of text.
TextBox1.Select(TextBox1.Text.Length, 0)