show & hide a form

P

Peter Morris

What is the syntax in Acces VB for showing and hiding a form?

I've created free standing VB applications before. The syntax
was simple:

frm_MyForm.show

This doesn't work in my Access program, though.
 
D

dan artuso

Hi,
Each form object has a visible property which you can toggle (True or
False).
It's not like VB though where a form will load when you first reference it.
In Access, you first have to use the Open method of the form to actually
open it.
 
P

Peter Morris

dan artuso said:
Hi,
Each form object has a visible property which you can toggle (True or
False).
It's not like VB though where a form will load when you first reference
it.
In Access, you first have to use the Open method of the form to actually
open it.

What's the syntax for doing that?
 
Top