-
Mask postal code
how do i get mask edit to show the canadian postal code??
Canadian Postal Code which is of the form: letter,number,letter space number,letter,number
i've tried
&#& #&#
$#$ #$#
C#C #C#C (this work alright, but it lets me enter all numbers??, it doesn't restrict to just letters, also i want to force uppercase for letter..?? HOW?? )
thanx a lot
--770
-
Create a mask edit box with the following for the Mask property:
>?#>? #>?#
> Forces Uppercase
? Only allows Letters
# Only allows Numbers
-
-
hey
how about a mask edit for an email address validation
[word]@[word].[word]
thanx
-
I think the MaskedEdit control is one of the worst controls there is. You'd be better off validating the text in a normal text box. If you search the forum for e*mail AND validate you'll find a number of solutions.