Datasheet becomes form @ Runtime......

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
 
A

Allen Browne

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

Try:
DoCmd.OpenForm "MyForm", acFormDS
 
Top