Default Form View Settings

  • Thread starter Thread starter cita
  • Start date Start date
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.
 
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
 
Back
Top