Unhide Columns

  • Thread starter Thread starter Bre-x
  • Start date Start date
B

Bre-x

There i an menu calle "Unhide Columns" that you can use
to hide/hide column on a table of datashee form.

what's the VBA code to call that feature??

Thnk you all,

Bre-x
 
There i an menu calle "Unhide Columns" that you can use
to hide/hide column on a table of datashee form.

what's the VBA code to call that feature??

Thnk you all,

Bre-x

For Form Datasheet view....
To hide a column:
Me![ControlName].ColumnHidden = True

To unhide the column:
Me![ControlName].ColumnHidden = False
 
Back
Top