How create form in module?

  • Thread starter XGuarden XServe via AccessMonster.com
  • Start date
X

XGuarden XServe via AccessMonster.com

I try to create form in module.(I dont use any standart form)
I just use code in module for everything but I can't create form with code=:0(
Somebody can help me?
 
M

Marshall Barton

XGuarden said:
I try to create form in module.(I dont use any standart form)
I just use code in module for everything but I can't create form with code=:0(


Creating a form is a design time operation. Generally, your
code should just use DoCmd.OpenForm to open the precreated
form.

OTOH, if your code is a design aid for your own use (like a
wizard), then you could use the CreateForm method.
 
Top