Max lines in a textbox?

MarkH

New member
Joined
Jan 15, 2007
Messages
4
Programming Experience
1-3
just wondering if there is a limit to the amount of lines/characters that can be displayed in a multiline textbox? i need to print logs from a database in a textbox, however after scrolling to the bottom, only about 10% of the data i need to display is in there. What is the solution to displaying a few thousand lines?
 
From the documentation:
The amount of text that can be entered in the RichTextBox control is limited only by available system memory.

Windows 98, Windows Millennium Edition Platform Note: The amount of text that can be stored in the Text property is limited to 65 KB of memory for the TextBox control.

Windows NT 4.0, Windows 2000, Windows 2000 Professional, Windows 2000 Server, Windows 2000 Advanced Server, Windows XP Home Edition, Windows XP Professional x64 Edition, Windows Server 2003 Platform Note: The amount of text that can be stored in the Text property is limited to the amount available system memory.
 
Back
Top