vb.net - RichTextBox get string from Index -
how can string index in richtextbox, that:
msgbox(richtextbox1.text(1, 5))
thanks!
richtextbox.text returns string, has string.substring(). should like:
dim s string = richtextbox1.text.substring(1, 5)
Comments
Post a Comment