View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips[_6_] Bob Phillips[_6_] is offline
external usenet poster
 
Posts: 11,272
Default Disable/Turn off

Hi Pete,

Add this code to that workbook

Sub Auto_Open()
Application.DisplayFormulaBar = False
End Sub

Sub Auto_Close()
Application.DisplayFormulaBar = True
End Sub

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"Pete" wrote in message
...
Is there a way to not display the formula bar on a active
workbook without making the change global for all
spreadsheets in the future.

Also how can I Gray out the standard tool bars that are
open in the workbook so no one can use any reformatting or
copy/pasting buttons on the spreadsheet I created.

Any insight is appreciated.

Thanks
Pete