Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Is it possible to limit the number of lines in a memo ?
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00306732
Message ID:
00306792
Views:
31
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

Previous
Next
Reply
Map
View

Click here to load this message in the networking platform