Default Form View Settings

C

cita

If anyone can help me I would appreciate it. How do I
save a form to open in the datasheet view only. I have
set datasheet view as the view to open in, in my form
properties, but upon click the form I want it still opens
it in form view format.
 
G

Graeme Richardson

Try these.
1) set the Views Allowed property to Datasheet (means that you can't swap to
Form view)
2) explicitly open the form in datasheet view: Docmd.OpenForm "MyForm",
acFormDS
 
Top