Hide and unhide form

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

Guest

i hide a form by using Property of form.
I click hide option in property dialog.
And this form is hiding.
Now i want to unhide it with a simple way.
Can some body help me?
 
in code
Forms!MyForm.Visible = False
Forms!MyForm.Visible = True

Pieter

DCTX said:
i hide a form by using Property of form.
I click hide option in property dialog.
And this form is hiding.
Now i want to unhide it with a simple way.
Can some body help me?



--
 
I'm assuming you hide your form by checking the form's Attributes: Hidden
check box. A simple way to see it again: Select Tools - Options - View Tab,
in Show area, check Hidden Objects check box. You should be able to see it
in the database window, but the form's icon is lighter in color.
 
Back
Top