Text Box Control....

gdanalakshmi

Registered User.
Local time
Today, 19:37
Joined
Nov 26, 2002
Messages
102
I have a textbox control that has the data which is to be in the format nnn-nnn-nnnA including the dashes. The last field in the Mail Code may be 3 or 4 characters.

How do I do that???
 
Set the input mask to: set input mask 000\-000\-000a
or 000\-000\-000a;0;_

first one does not store dashes in the databse
the ;0 property ensures you store the dashes in the database

do a search on input mask in help.
 

Users who are viewing this thread

Back
Top Bottom