Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以,我想这样做,当用户将某些内容粘贴到文本框中时,一旦将前 24 个字符粘贴到该文本框中,它会将其余字符发送到富文本框。
我试过分裂,加入,没有运气。我不知道我还能做什么。有任何想法吗?
我试过了:
If TextBox1.Text > TextBox1.MaxLength Then RichTextBox4.Text = TextBox1.Text End If
还有其他一些奇怪的事情没有解决。我会很感激一些帮助。
谢谢你。
使用子字符串....
Dim input = textbox1.text Dim substring As String = input .Substring(0, 24) richtextbox4.text = substring
http://www.dotnetperls.com/substring-vbnet