Is there a way to define an unbound text field as a memo field on a form.

K

Kevin Sprinkel

Any textbox will do to enter large amounts of text. If
you want the user to be able to enter blank lines, set the
textbox Enter Key Behavior property to "New Line In Field".

You should be aware, however, that "fields" don't exist on
a form; "controls" do. Control types -- textbox, combo
box, list box don't correspond to field types -- text,
memo, integer, Yes/No, etc. A textbox can display data
from any of these types of fields, or a calculation, a
result of a function call, etc. When it's unbound, you
can type any kind of data into it, up to its storage limit.

HTH
Kevin Sprinkel
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top