S
sJ
I hide tooolbars on the open and make them visible on close. Before my
database closes, I can see the toolbars as they are visible before the app
quits, but when I open access next time all are hidden. Below is my code I
use on close.
Sub ShowTB()
Dim i As Integer
For i = 1 To CommandBars.Count
CommandBars(i).Enabled = True
Next i
DoCmd.Quit
End Sub
database closes, I can see the toolbars as they are visible before the app
quits, but when I open access next time all are hidden. Below is my code I
use on close.
Sub ShowTB()
Dim i As Integer
For i = 1 To CommandBars.Count
CommandBars(i).Enabled = True
Next i
DoCmd.Quit
End Sub