Insert large text into a textbox

  • Thread starter Thread starter Hai Nguyen
  • Start date Start date
H

Hai Nguyen

I have a large amount of text want to insert into a textbox.

I would like to know how I can do that? Thanks

Both by design time and running time
 
Whether you do it at design time or at run-time, you do it the same way. You
set the "Text" property.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
mytextbox.text = "very long text..................";

If you want the text to be visible to the user you can change the TextMode
property of the textbox to multiple lines so more than just one line can be
seen at once.
 
Back
Top