Thoughts, opinions, samples, tips, and tricks about Microsoft Access
Monday, January 7, 2019
How Do I Minimize the Access Navigation Pane on Start Up?
Create a function called SetMyOptions()
Function SetMyOptions() 'Open Nav Pane collapsed CurrentDb.Properties("Startupshowdbwindow") = False SendKeys ("{F11}") SendKeys ("{F11}") End Function
No comments:
Post a Comment