| re: reports question
"ken" <gevayl@gmail.com> wrote in message
news:1117921761.512260.199360@o13g2000cwo.googlegr oups.com...[color=blue]
> ok the shrink property workssort of. I have 2 label boxes as a result
> of them I can't get the detail section to go away. If I delete the
> labels the detail shrinks. I tried setting the visible property of the
> labels to false but that did not help? Maybe I have to set another
> property?[/color]
Some things may intefere with the shrinking you had hoped for - you have
just found one, other examples include the one below:
Address1 Tel
Address2 Fax
Town
where you want the address to 'bunch up', so if there is only one address
line, the town should appear immediately below Address line1, but if there
is a fax number, the address as a whole cannot shrink.
In the example above, you might place the address on a subform, but in
yours, the answer may be to delete the labels and change the control source
of the textbox, e.g.
=IIF(IsNull(FirstName),Null,"First Name: " & [FirstName])
This means the textbox 'displays it's own label' and so does not need a real
label. |