Access toolbars remove

Lenovo123

New member
Local time
, 22:46
Joined
Dec 14, 2015
Messages
9
Hi guys,

Is there a way I can get rid of all the Microsoft toolbars etc. so the DB loads on the 'welcome page' form. I've changed the settings so the DB loads the form on startup but want only the form to be visible just like a 'normal' application would be?

If there is way for me to re-enable the toolbars when I start the db it will be very helpful too!

Thanks!!!

Bill
 
Put this in the Open Event of your the 'welcome page' form.
Code:
Private Sub Form_Open(Cancel As Integer)

   DoCmd.ShowToolbar "Ribbon", acToolbarNo

End Sub
 
BTW, holding down a <SHIFT> key while the db opens bypasses this code.
 

Users who are viewing this thread

Back
Top Bottom