What criteria does MS Access use to Shrink a text box? I want to Shrink a text box if a certain condition is met, else go ahead and show it.
I would imagine it should work with something like this in the Text Box Control Source:
=IIf(<Shrink Condition Goes Here>,"",[MyDataSource])
I...