The TextBox control (in a .NET winforms application) seems to hard limit line lengths to 1024 characters, even with the WordWrap property set to false. Is there a way override this?

I need to view lengthy data in a visual sense. Currently a line of 2000 characters wraps onto the second line and causes the right edge of several lines to be jagged rather than aligning.

link|improve this question

Have you tried a RichTextBox? – Gabe Sep 17 '10 at 20:46
A RichTextBox works, actually. Thanks. :) Though I still wonder if a TextBox can be extended, in case there's some overhead in using a RichTextBox that is unforeseen... – JYelton Sep 17 '10 at 20:50
feedback

1 Answer

up vote 1 down vote accepted

The problem is that the Windows Edit control that the TextBox uses for its implementation has a limit of 1024 characters per line. This lmit has been around forever. Rather than fix it (which could cause problems with programs that somehow rely on this limit), they simply introduced the RichEdit control that doesn't have that limit and has many more features.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.