View Single Post
  #2  
Old November 10th, 2006, 12:55 PM posted to microsoft.public.access.forms
BruceM
external usenet poster
 
Posts: 723
Default word wrap in list items

If the text box is tall enough to accomodate two lines of text, text that
doesn't fit on one line it should break to the second line on its own. To
get the text to break to a new line at a specific place, in an expression
use Chr(13) & Chr(10):

="First line " & Chr(13) & Chr(10) & "Second Line"

In VBA you can use vbCrLf instead of Chr(13) & Chr(10)

For a more detailed response a more detailed question is needed.

"alekm" wrote in message
...
Hi,
I've got a list on a form. Strings in the list are prety long.
Is there any way I can make strings to wrap in several lines.
thanx

alek_mil