In VB6 I would limit the characters allowed in a text box by sayingThe ??? being what ever I wanted to compare againstVB Code:
if keyascii=??? then keyascii=0 endif
Now with .Net there is only a readonly keychar property.
How do I limit keypresses to numeric values.
