Limit to TextBox.AppentText

  • Thread starter Thread starter CJ Taylor
  • Start date Start date
C

CJ Taylor

Is there a limit to how much can be added by using AppendText Method of a
text box. Not the size to be added, but a limit from the textbox itself.

I added about 400k of text to a text field, and after that, every time
appendtext was called, stuff just stopped showing up.

Any help would be appreciated.

Thanks,
cJ
 
CJ,

* "CJ Taylor said:
Is there a limit to how much can be added by using AppendText Method of a
text box. Not the size to be added, but a limit from the textbox itself.

I added about 400k of text to a text field, and after that, every time
appendtext was called, stuff just stopped showing up.

That's a bug in .NET 1.1:

<URL:http://groups.google.com/[email protected]>
 
* "Cor said:
Funny bug, as Herfried showed, I tried += and thought that that did work
normal.

ACK, it's just a bug inside the implementation of 'AppendText'.

;->
 
Back
Top