Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Making subform fields invisible

Status
Not open for further replies.

EddyLLC

Technical User
Mar 15, 2005
304
US
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]

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top