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 tried using Null instead of the empty string too; didn't work either way. A good way would be to call a method like MyTextBox.Shrink() but I don't know if anything like that exists.
Any suggestions?
Thanks,
H.
I would imagine it should work with something like this in the Text Box Control Source:
=IIf(<Shrink Condition Goes Here>,"",[MyDataSource])
I tried using Null instead of the empty string too; didn't work either way. A good way would be to call a method like MyTextBox.Shrink() but I don't know if anything like that exists.
Any suggestions?
Thanks,
H.