How create form in module?

  • Thread starter Thread starter XGuarden XServe via AccessMonster.com
  • Start date 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?
 
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.
 

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

Back
Top