How add text data to TextBox Control?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i wrote this code but this is not work. How i can do this task?

int len=TextBox1.Text.Length;
TextBox1.Text.Insert(len,"s");

Thank you.
 
This is very simple.
TextBox1.Text+="s";
Have a good time, bye.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top