Is it possible to make a field on a subform not visible. I tried the
obvious. In design mode of the subform, I set the fields Visible property to
No. When I open up the sub form the field still appears on the subform.
Aarrgh!
In datasheet view you use the ColumnHidden property, which does not apply to form view, just as the Visible property does not apply to Datasheet. For example:
[tt]Me.YourSubformName.Form.YourColumnName.ColumnHidden = True[tt]
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.