Datasheet Form

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

Guest

Dear Techies,

I built a datasheet form and added a control to another form to open it, but
it won't open in datasheet, even though the properties clearly indicate that
it's a datasheet. Any ideas on what I'm doing wrong?

thanks,
 
The OpenForm method defaults to Form View, unless you specify something
different.

Try:
DoCmd.OpenForm "Form1", acFormDS
 
Hi Allen,

Thank you, but what does "The method requires a form name argument"? I
received that msg when I compiled...
 
In the example, Form1 represents the name of the form you wish to open.

You must supply a valid name for it to open the form.
 

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