I ran into a little problem, i am trying to filter a rather large list which i copied from another program and pasted into mine. Problem is, theres so much text that only some o
I am not sure, but I think you can just change the TextBoxBase.MaxLength property. On the linked page it says that the default value is 32767, so that is only 64KB and therefore not enough for your application.
You can set the MaxLength property of your text boxes to 0
to override the default 32767
character limit:
yourTextBox.MaxLength = 0;
You could use a RichTextBox control instead. There is no character limit on a RichTextBox
. It is just limited by memory.
Or you could change the MaxLength
property of the TextBox
. The maximum value for MaxLength
is 4294967295 or an amount based on available memory, whichever is smaller.