TextBox stops appending text

G

Guest

Been using a System.Windows.Forms.TextBox in a standard
System.Windows.Forms.Form.
This TextBox gets written to quite frequently during the app lifecycle with

myTextBox.AppendText(msgText + System.Environment.NewLine);

On occasion it seems to stop appending text, and I have to quit out of the
app to fix it. No Exception is thrown.
ScrollBars=Both
Multiline=True
MaxLength=32767 (default)
ReadOnly=True

on
Win XP Pro SP2
Microsoft .NET 1.1 SP1

Any help would be appreciated.
 
H

Herfried K. Wagner [MVP]

ronaldo1 said:
Been using a System.Windows.Forms.TextBox in a standard
System.Windows.Forms.Form.
This TextBox gets written to quite frequently during the app lifecycle
with

myTextBox.AppendText(msgText + System.Environment.NewLine);

On occasion it seems to stop appending text, and I have to quit out of the
app to fix it. No Exception is thrown.
ScrollBars=Both
Multiline=True
MaxLength=32767 (default)
ReadOnly=True

on
Win XP Pro SP2
Microsoft .NET 1.1 SP1

See:

<URL:http://groups.google.com/group/micr...rk.windowsforms.controls/msg/6b61038ab6d31cd2>
 

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

Top