Reputation: 15
I'd like to know which VB.net control has more characters. To explain better: I have a file with 1 million ca characters, well I want to insert all content in a VB.net control, either textbox, richtextbox or labels.
If a control with that huge capacity doesn't exist, is there any way I can set limit max 1 million and display them anyway (e.g. in a textbox)?
Much appreciated your help!
Upvotes: 0
Views: 1734
Reputation: 11773
From http://msdn.microsoft.com/en-us/library/system.windows.controls.textbox.maxlength%28v=vs.110%29.aspx
When this property is set to 0, the maximum length of the text that can be entered in the control is limited only by available memory.
Upvotes: 2