Aligning address text in a text box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,
I have a text box on a form that is for addresses. However the way it
currently is set up the address is shown in one long string of words.

I.e. 224 Mount Crandell, Washington, U.S.A. 95995

This is okay but it is confusing to read so instead I would like it to read
like a normal address label like below:

I.e. 224 Mount Crandell
Washington, U.S.A
95995

I can't just use enter to move to the next line as you would on a word
processer as pressing enter takes me to the next text box.

Any help on this would greatly be appreciated.

Thanks,
 
Just include carriage returns. Make the textbox something like this...


= [Address1] & chr(13) & chr(10) & [STATE] & [COUNTRY] & chr(13) & chr(10) &
[ZIP]
 
Is the entire address being entered as a single field, or is it be only
displayed as a single field?

If it is the only displayed that way then Rick's solution is what you
want.

If it is being entered that way, I would like to see the answer also.

Ron
 
Is the entire address being entered as a single field, or is it be only
displayed as a single field?

If it is the only displayed that way then Rick's solution is what you
want.

If it is being entered that way, I would like to see the answer also.

Ron
 
Back
Top