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
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.