datasheet default opening in single form view

  • Thread starter Thread starter Belinda
  • Start date Start date
B

Belinda

--Working w/ ACCESS 2003, I created a pop up modal YES form w/datasheet as
its default view. When I use a CMD button made with the Wizard to open this
form it's opening it up in single form. How can I fix this? Thank you...

Many thanks, Belinda
 
--Working w/ ACCESS 2003, I created a pop up modal YES form w/datasheet as
its default view. When I use a CMD button made with the Wizard to open this
form it's opening it up in single form. How can I fix this? Thank you...

Many thanks, Belinda

Regardless of a forms Default View settings being set to Datasheet
View, if you open that form using code you must specify Datasheet
View:

DoCmd.OpenForm "FormName", acFormDS
 
Back
Top