how to hide a subform

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
 
P

pete

-----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?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top