Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Avoid special chars in data entry
Message
 
À
23/08/2005 09:37:16
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Divers
Thread ID:
01042890
Message ID:
01042964
Vues:
20
>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.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform