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

Popular posts from this blog

qt - Using float or double for own QML classes -

Create Outlook appointment via C# .Net -

ios - Swift Array Resetting Itself -