vote up 0 vote down star

Hi,

I want to filter the keyboard inputs into textbox based on the type of input I allow. e.g.

0 for Digits only 1 for Alphabets only 2 for Alphanumerics

So if 0 is configured and a character 'a' is pressed on the keyboard, it is not shown in the textbox. How do I do that in C#?

Thanks

flag

3 Answers

vote up 0 vote down check

You need to subscribe to control's KeyPress event (and optionally KeyDown method), and if key stroke must be eaten set Handled property to true. Read more in msdn (with sample that cover your problem).

link|flag
I chose this answer because it gave me a general approach to handle this kind of an issue. Other good answers are equally good and can be used depending on the case. Thanks – LogInIssue Jun 24 at 9:25
vote up 4 vote down

Not sure I understood your question correctly but you can use masked text box for creating many types of input filters.

link|flag
vote up 0 vote down

you can use regular expressions. according to the user input you get, you can change your regular expression/validation method. below is an article that explains how to extend a textbox to validate against regular expressions. hope that helps at least to have some idea. http://www.c-sharpcorner.com/UploadFile/scottlysle/RegExTextBox01022007150131PM/RegExTextBox.aspx

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.