Can a Table be opened in datasheet view from a form

  • Thread starter Thread starter ksgolfer
  • Start date Start date
K

ksgolfer

Trying to figure out how to open a table in datasheet view using a control
button on a form and not use a split form view. Any help?
 
Trying to figure out how to open a table in datasheet view using a control
button on a form and not use a split form view. Any help?

I'll assume you meant to say "open a 'form' in datesheet view".
To open a form in datasheet view by means of code you must explicitly
code it to open in datasheet view:
DoCmd.OpenForm "FormName", acFormDS
 
Back
Top