Make subform control invisible

  • Thread starter Thread starter Akilah
  • Start date Start date
A

Akilah

Is the a way from the main form to make a control on its subform invisible?
Thanks in advance.
 
However, on a datasheet, you can hide the control column by:

Me!YourSubFormName.Form!YourControlName.columnhidden = -1
then unhide by -- columnhidden = 0

Damon
 
Thanks, this works well.

Damon Heron said:
However, on a datasheet, you can hide the control column by:

Me!YourSubFormName.Form!YourControlName.columnhidden = -1
then unhide by -- columnhidden = 0

Damon
 
Back
Top