Open form in Datasheet View?

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.
 
M

MS learner

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?
 
F

fredg

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
 
Top