splash screen.....

  • Thread starter Thread starter Lee Taylor-Vaughan
  • Start date Start date
L

Lee Taylor-Vaughan

Hi all,

On my forms load, or open event i want it to loop through all the toolbars &
menubars and assign them not to show... (its a splash screen).
could someone help me with the code on how to do this, please.

thanks in advance...


lee
 
Hi Lee,

Try...


Dim ComBar As CommandBar

For Each ComBar In Application.CommandBars
ComBar.Enabled = True
Next ComBar

Steph
 
Back
Top