Hide menu bar

D

Dani Lima

Hi! I cant hide the menu bar from a workbook. I've tried this macro; the
others bars are hidden but the menu bar didnt. Someone could tell me what I
am doing wrong?? Another question: the windows live bar is appearin too even
if I deselect it. How can I desable it? It can be done with the macro too???

Macro:

Private Sub Workbook_Open()

Application.ScreenUpdating = False
Application.DisplayAlerts = False
Application.DisplayExcel4Menus = False
Application.DisplayFormulaBar = False
Application.DisplayInsertOptions = False
Application.DisplayPasteOptions = False
Application.DisplayScrollBars = False
Application.DisplayStatusBar = False
Application.DisplayFullScreen = True

Sheets("Menu").Select
Range("A8").Select

End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top