Hide field in datasheet view

  • Thread starter Thread starter Dave
  • Start date Start date
D

Dave

I have a subform in datasheet view and I want to hide one of the fields so
that only certain fields display when the main form loads.

How can I do this?
 
I have a subform in datasheet view and I want to hide one of the fields so
that only certain fields display when the main form loads.

How can I do this?

Code the Form's Load event:
Me!FieldName.ColumnHidden = True

To show it again:
Me!FieldName.ColumnHidden = False
 
Back
Top