D
duncanjx
I am trying to work out how to have multiple lines in one address
field for Access?
field for Access?
I am trying to work out how to have multiple lines in one address
field for Access?
Is that a field in a table? If so, just enter the address
using Ctrl + Enter between the lines.
If you mean a text box control that has an expression that
concatenates severls table fields to display an address,
then use something like:
=line1 & Chr(13) & Chr(10) & line2
If you are using a FORM to input data, you can set the property of the
control on the form to add a new line when the return (enter) key is
pressed.
--Open the form in design view
--Select the control that is bound to the address field
--Select the control's properties
--On the other tab, set the Enter Key Behavior to "New line in field"
--Save the change to the form
--
John Spencer
Access MVP 2002-2005, 2007
Center for Health Program Development and Management
University of Maryland Baltimore County
.
- Show quoted text -