how to hide a subform

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

You could set the subform visibility property to False and
then make it true when you e.g. click a command button. In
the OnClick event then you could say

[subform name].Visible = True

and it'll pop up

Cheers

Chris
 
-----Original Message-----
You could set the subform visibility property to False and
then make it true when you e.g. click a command button. In
the OnClick event then you could say

[subform name].Visible = True

and it'll pop up

Cheers

Chris

thanks for the tip - when i try this, i am creating a
Command Button that will refresh Form Data. When i click
on the button, i get an error about 'Macro name does not
exist'. what should i do differently in my Command Button?
 
Back
Top