附加文本到TextBox或者RichTextBox控件的通常方法是在當前內容上連接上新的字符串:
Text1.Text = Text1.Text & newString
但還有一個更快的方法,并且會減少連接操作的閃爍感,代碼如下:
Text1.SelStart = Len(Text1.Text)
Text1.SelText = newString
Text1.Text = Text1.Text & newString
但還有一個更快的方法,并且會減少連接操作的閃爍感,代碼如下:
Text1.SelStart = Len(Text1.Text)
Text1.SelText = newString