text1.Seltext - vb.net equivalent?

  • Thread starter Thread starter jn
  • Start date Start date
J

jn

greetings,

what is the correct way to add text to a textbox in vb.net
concatenating it to text that the textbox already
contains? I am experimenting with text1.text.concat but
having some problems. Any help appreciated.

thanks
jn
 
jn said:
what is the correct way to add text to a textbox in vb.net
concatenating it to text that the textbox already
contains?

Take a look at the textbox's 'AppendText' method and 'SelectedText'
property.
 
Back
Top