Shrinking Memo Field

D

DS

How do you get a Memo field to grow or shrink on a form (Contionous or
Single).
Thanks
DS
 
K

Ken Snell [MVP]

On a form that is being displayed on the screen? You cannot make it grow or
shrink. Those properties are available only when you print the form (and
that is not the recommended way to print out your results -- use a report
instead).

You can set the Scroll Bar property for the textbox so that a vertical
scroll bar is available when the memo field gets the focus. Your user then
can scroll up and down the memo text in order to read it all.
 
M

Mauricio Silva

You set CanGrow and CanShrink to Yes. Although, as the help says:

"These properties affect the display of form sections and controls only when
the form is PRINTED or PREVIEWED, not when the form is displayed in Form
view, Datasheet view, or Design view."

Mauricio Silva
 
D

DS

Ken said:
On a form that is being displayed on the screen? You cannot make it grow or
shrink. Those properties are available only when you print the form (and
that is not the recommended way to print out your results -- use a report
instead).

You can set the Scroll Bar property for the textbox so that a vertical
scroll bar is available when the memo field gets the focus. Your user then
can scroll up and down the memo text in order to read it all.
OK...Is there a way to limit the amount of Characters that you can type
into a Memo Field?
Thanks
DS
 
Top