Large text in a text box

  • Thread starter Thread starter A.M
  • Start date Start date
A

A.M

Hi,

I am trying to add a status log feature to my application. I want to show
the result of each step in a text box. Here is what I have

txtLog.text += strLog

The problem is txtLog.text is not a string builder, that means for large
texts, it might take lots of resources.
Is there anyway to append a string to text boxes contain large amount of
texts?

Thank you,
Alan
 
A.M said:
I am trying to add a status log feature to my application. I want to show
the result of each step in a text box. Here is what I have

txtLog.text += strLog

The problem is txtLog.text is not a string builder, that means for large
texts, it might take lots of resources.
Is there anyway to append a string to text boxes contain large amount of
texts?

Maybe you are looking for the textbox' 'AppendText' method.
 
Back
Top