Input Mask

  • Thread starter Thread starter Chris Calhoun
  • Start date Start date
C

Chris Calhoun

Does anyone know how to put an input mask on a textbox?
Without using a thrid party control?

Thanks.
 
Chris Calhoun said:
Does anyone know how to put an input mask on a textbox?
Without using a thrid party control?

Thanks.
Web or Windows app?
It really doesn't seem to make any difference from a cursory review of the
parent classes.
I believe you'll have to write your own "input mask" in code. Try looking
for the term "regular expression" in the .NET Framework help. This should
give you a start.

ms-help://MS.VSCC.2003/MS.MSDNQTR.2003APR.1033/cpgenref/html/cpconregularexp
ressionslanguageelements.htm

Found searching for the phrase "regular expression" in MSDN Help filtered by
Visual C#.
 
Back
Top