Open form in Datasheet View?

  • Thread starter Thread starter Randy
  • Start date Start date
R

Randy

How can I force a form to open in Datasheet view?

I want to open the Datasheet view fromf the switchboard. I have gone
into properties and turned off the other views but it still comes up in
the form view.

Thanks for any help.
 
Hi,

I don't know if it will work but have you tried setting the form property on
Form.Load to open in Datasheet view? Is that possible?
 
How can I force a form to open in Datasheet view?

I want to open the Datasheet view fromf the switchboard. I have gone
into properties and turned off the other views but it still comes up in
the form view.

Thanks for any help.

Regardless of the form's default view setting, if you wish to open the
form in Datasheet view using a command button event, you MUST
explicitly open the form using:
DoCmd.Openform "FormName", acFormDS
 

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