Field mask advise

J

John

Hi

What mask do I need to ensure user enters numbers in format +44 followed by
10 more digits?

Thanks

Regards
 
J

John W. Vinson

Hi

What mask do I need to ensure user enters numbers in format +44 followed by
10 more digits?

Thanks

Regards

Use a Text field, not a Numbre field; an input mask of

"\+\4\40000000000";0

will put in a literal +44 and require entry of ten digits.

John W. Vinson [MVP]
 
Top