View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.setup
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default format toolbar disappear

Did you mean you can NOT make it appear?

Maybe you could try this macro:

Option Explicit
Sub testme()
With Application.CommandBars("Formatting")
.Visible = True
.Enabled = True
End With
End Sub



SpeeD wrote:

Hi

my format toolbar has disappeared. I can make it appear in the usual
manner... right-click-toolbars or view-tollbars.

How can i make it appear? VBA?

Thanks
SpeeD


--

Dave Peterson