Text wrap in field

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

Guest

I have a report and want one of the fields to allow the text to wrap to
another line below. How do I set this?
 
Normally you can just set the width of the text box where you want, and set
Can Grow and Can Shrink to True, and the text should wrap.
 
I have a report and want one of the fields to allow the text to wrap to
another line below. How do I set this?

Set the control's Can Grow property to Yes.
Also set the Detail Section's (if that's the section the control is
in) Can Grow to Yes.
 
tjsmags said:
I have a report and want one of the fields to allow the text to wrap to
another line below. How do I set this?


Make the text box taller or set its CanGrow property to Yes.
 
How do I wrap the text in a text box. I want something like

This is for your infor-
mation

Currently this is what I get:

This is for your
information


Any ideas?

Sudha


EggHeadCafe.com - .NET Developer Portal of Choice
http://www.eggheadcafe.com
 
Sudha said:
How do I wrap the text in a text box. I want something like

This is for your infor-
mation

Currently this is what I get:

This is for your
information


An Access text box does not provide such sophisticated
features as hyphenation or other puplication style
formatting, Maybe you can find a third party control that
does, but I have never seen a need in a database report. If
it really is critical to do that, you might want to consider
using Word to publish your data.
 
Back
Top