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 can set the MaxLength property of your text boxes to 0 to override the default 32767 character limit:
0
32767
yourTextBox.MaxLength = 0;