Form view

  • Thread starter Thread starter Bob76
  • Start date Start date
B

Bob76

I created a form called Master Employee List. Whenever I open this form, it
immediatedly opens in datasheet view. How can I have it open in Form View as
default?

Thanks, Bob
 
Hi Bob76,
on the form's property dialog, on the format tab, look for the property
called Default View.
Change it to Single Form.

Jeanette Cunningham MS Access MVP -- Melbourne Victoria Australia
 
Did it.....Thanks a lot, Jeanette....

Jeanette Cunningham said:
Hi Bob76,
on the form's property dialog, on the format tab, look for the property
called Default View.
Change it to Single Form.

Jeanette Cunningham MS Access MVP -- Melbourne Victoria Australia
 
Did it.....Thanks a lot, Jeanette....

Be aware that even though you have now set this form's Default View to
Datasheet View, if you should everr open it using code you must
specify Datasheet View, otherwise it will again open in Form View.

DoCmd.OpenForm "FormName", acFormDS
 
Back
Top