text box question

  • Thread starter Thread starter Josh
  • Start date Start date
J

Josh

I'm using one textbox to display various fields. I want to
be able to make a few of the fields show up on lines alone.
So I just want the code I would use to get a new line.
Like in C its /n. I know I could do this by creating
another textbox and placing it on another line, but I would
like to be able to do it all in one textbox.

Thanks, Josh
 
You can add Chr(13) & Chr(10) for instance:
=Address1 & Chr(13) & Chr(10) & Address2
Set the text box Can Grow to Yes.

_____________
Duane Hookom
MS Access MVP
 
Back
Top