Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Avoid special chars in data entry
Message
 
To
23/08/2005 09:37:16
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
01042890
Message ID:
01042964
Views:
21
>Hi. I have first name/last name fields. and I only want to allow letters,digits and space there. no special chars. i.e. comma,semicol etc.
>if i use 'N' in inputmask it allows letters and digits but no space.
>can you help me with this? thanks in advance. appreciate.

Mark,
In KeyPress Event of that TextBox you can put:
LPARAMETERS nKeyCode, lShift
LOCAL allowed_chars
allowed_chars = "0123456789 ABCDEFGHIJKLMNOPQRSTUVWXYZ"
IF NOT UPPER(CHR(nKeyCode)) $ allowed_chars
   NODEFAULT
   RETURN
ENDIF
(not tested)
Against Stupidity the Gods themselves Contend in Vain - Johann Christoph Friedrich von Schiller
The only thing normal about database guys is their tables.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform