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

python - jinja2: TemplateSyntaxError: expected token ',', got 'string' -

Qt4: how to send QString inside a struct via QSharedMemory -

node.js - NodeJS remote terminal to Dropbear OpenWRT-Server -