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

php - Hide output during test execution -

javascript - Migrate custom AngularJS filter from 1.2.28 to 1.4.x -

Update Magento products with multiple images -