tonywatsonhelp
Well-known Member
- Joined
- Feb 24, 2014
- Messages
- 3,210
- Office Version
- 365
- 2019
- 2016
- Platform
- Windows
Hi Everyone.
I use the above code to hide all excel tools etc to make the sheet look and be more of an input only sheet.
the page is also protected and this works great, but some staff insist on overriding the code with the escape Key.
Is there a more robust way to get excel to not have all its tools etc on show and lock it down so no user can override what its doing.
My ultimate result would be to have a screen that only has the sheet and no other controls except close and save.
any ideas would be appreciated.
Thanks
Tony
Code:
Sub tewo()
Application.DisplayFullScreen = True
Application.DisplayFormulaBar = False
ActiveWindow.DisplayWorkbookTabs = False
ActiveWindow.DisplayHeadings = False
ActiveWindow.DisplayGridlines = False
End Sub
I use the above code to hide all excel tools etc to make the sheet look and be more of an input only sheet.
the page is also protected and this works great, but some staff insist on overriding the code with the escape Key.
Is there a more robust way to get excel to not have all its tools etc on show and lock it down so no user can override what its doing.
My ultimate result would be to have a screen that only has the sheet and no other controls except close and save.
any ideas would be appreciated.
Thanks
Tony