P
PAOLO
Just a quick question what does the can shrink property do in a report ?
Just a quick question what does the can shrink property do in a report ?
Just a quick question what does the can shrink property do in a report ?
John Vinson said:Makes a textbox vanish if it's empty. One common use is in addresses:
say you have textboxes
Addressee
Address1
Address2
City ST Postcode
and one address has nothing in the Address2 field; without Can Shrink
you would see
Joe Doaks
315 Maple Ave
Salem OR 94949
With it, you would see
Joe Doaks
315 Maple Ave
Salem OR 94949
John W. Vinson[MVP]
PAOLO said:Thanks Fred
So if you set up the field to "can shrink" and the field is blank will
access hide the label linked to that as well?
Arvin Meyer said:No, You cannot have anything else visible on the same line.
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads
http://www.datastrat.com
http://www.mvps.org/access
reportPAOLO said:Thanks Fred
So if you set up the field to "can shrink" and the field is blank will
access hide the label linked to that as well?
PAOLO said:So how if I design a report which has labels describing each field and I
want to make invisible the ones that don't have anything typed in (by saying
invisible I mean like can shrink where you can't even see on the report
there was another field set up) is it possible to write a VBA code like
If (IsNull([fieldname])) Then
[labelname]???? canshrink
End If
Something similar to this?
Thanks for your help
Arvin Meyer said:No, You cannot have anything else visible on the same line.
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads
http://www.datastrat.com
http://www.mvps.org/access
report