I have a masked textbox where the user is only allowed to enter alphanumeric letters.
But how can I get the amount of letters to be entered unlimited, so any number of letters can be entered and not restricted to the mask?
nameTextBox.ValidatingType = typeof(System.Char);
nameTextBox.TypeValidationCompleted += new TypeValidationEventHandler(nameTextBox_TypeValidationCompleted);