I have a sub Form that is in Datasheet mode. On my Main form I have a button that opens this form but then it shows in Form view. I set both the Default view and Allowed view options to Datasheet but that didn't help. This keeps me wondering why it shows as Datasheet when called directly but in Form view when called from the Main Form. I guess I need to add some code to the On click command of the button. Any suggestions?
Datasheet Form insists on showing in Form view.
Collapse
X
-
I asume you're using DoCmd.OpenForm to open the form. When you open a form in this manner you have to specifically tell Access to open it in DataSheet View.
DoCmd.OpenForm "Your Form", acFormDS
Linq ;0)> -
Originally posted by missinglinqI asume you're using DoCmd.OpenForm to open the form. When you open a form in this manner you have to specifically tell Access to open it in DataSheet View.
DoCmd.OpenForm "Your Form", acFormDS
Linq ;0)>
Anyway, thanks a lot.Comment
Comment