Form in Datasheet View

  • Thread starter Thread starter depawl
  • Start date Start date
D

depawl

I've created a form with the form wizard that I want to have displayed
in datasheet view. When I open the form directly from the Objects Menu
it works fine, but I want to be able to open this form from a control
button on another form, and when I do it this way it always opens in
form view. In the properties for the form, datsheet is set as the
default, and I haven't been able to find any other settings that make a
difference.
Any ideas?
Thanks.
 
I've created a form with the form wizard that I want to have displayed
in datasheet view. When I open the form directly from the Objects Menu
it works fine, but I want to be able to open this form from a control
button on another form, and when I do it this way it always opens in
form view. In the properties for the form, datsheet is set as the
default, and I haven't been able to find any other settings that make a
difference.
Any ideas?
Thanks.

You have to be explicit.
DoCmd.OpenForm "FormName", acFormDS
 
Back
Top