Datasheet becomes form @ Runtime......

  • Thread starter Thread starter Atlas
  • Start date Start date
A

Atlas

I have a form that has a defuelt view set to Datasheet. It works fine.

When testing the same form running Access with the /runtime option, the form
switches to non-continuos form. Why is that?
Can it depend on the fact I've disabled all standard "comandbars"???

Thanks
 
If the form is being opened programmatically the default View for OpenForm
is acNormal.

Try:
DoCmd.OpenForm "MyForm", acFormDS
 
Back
Top