Hi,
How can I hide all the command bars except my customize tool bar ? I have hide all my command bars by the following code :
I can change “CommandBars(i).Enabled = False” to “CommandBars(i).Enabled = True” but I want only my customized tool to be appear. What is the solution?
Thanks,
Le888
How can I hide all the command bars except my customize tool bar ? I have hide all my command bars by the following code :
Code:
' Hide all window bar
Dim i As Integer
For i = 1 To CommandBars.Count
CommandBars(i).Enabled = False
Next i
DoCmd.RunCommand acCmdWindowHide
I can change “CommandBars(i).Enabled = False” to “CommandBars(i).Enabled = True” but I want only my customized tool to be appear. What is the solution?
Thanks,
Le888