Hiding a subform

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to hide a subform until user clicks on the 'Time' page, then hide it again when user clicks on any other page. I can't seem to get the set 'formname'.visible = false to work.
 
Refer to the subform by the name of the subform control that holds the
subform:

Me.SubformControlName.Visible = False

--

Ken Snell
<MS ACCESS MVP>

kronar said:
I need to hide a subform until user clicks on the 'Time' page, then hide
it again when user clicks on any other page. I can't seem to get the set
'formname'.visible = false to work.
 
Back
Top