Line break in reports

C

chessMaster

How do I create a line break on the detail section so that the next info
appears with two or three spaces from the first?
 
B

Bob Howard

Assuming you're talking about multiple lines within the same detail layout,
I suggest that you place an extra unbound textbox control on the report that
has the height of the space you wish to sometimes have Leave the data
content of this empty, and define it with CanShrink=Yes. Also set the
Detail section to CanShrink=Yes.

If you do nothing else, the space used by the control will appear. In your
VBA, set the control to CanShrink=False (which will make it "No") and then
the space used by the control will appear.

You'll need to set this true/false for each detail record.

Bob (@Martureo_Org)
 
P

PC Datasheet

Your pageheader is tight against the bottom of your controls in the Detail
section. Slowly move your cursor down across the top border of the
PageHeader. A "Handle" will appear. Drag the top border down a desired
amount so that it is not tpuching the bottom of your controls in the Detail
section.
 
C

chessMaster

Thank you Bob. I used an unbound text box, like you suggested, and the report
is EXCELLENT.

THANKS.
 
C

chessMaster

Thanks!!


PC Datasheet said:
Your pageheader is tight against the bottom of your controls in the Detail
section. Slowly move your cursor down across the top border of the
PageHeader. A "Handle" will appear. Drag the top border down a desired
amount so that it is not tpuching the bottom of your controls in the Detail
section.

--
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
[email protected]
www.pcdatasheet.com
 
Top