Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Is it possible to limit the number of lines in a memo ?
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00306732
Message ID:
00306792
Vues:
30
Hi Eric,

I'm assuming you mean an editbox. IF this is the case, you can add the following code to the editbox's KeyPress event:
LPARAMETERS nKeyCode, nShiftAltCtrl
if nkeycode = 13
	if occurs(chr(13),this.value) >=5
		nodefault
	endif
endif
This example limits input to 6 lines.

>When the user input in a memo field using a text box, is it possible to restrict the input to a predetermined number of lines. (Right now I take out the vertical bar but still the user can input more than the size on the screen).
>
>Thanks
>ERic
kenweber
GCom2 Solutions
Microsoft Certified Professional

Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform