I hide the sheet tabs of my file...
and don't want anyone to display it by enabling the Sheet tabs in the Tools-Options-View menu
I'm having this code ThisWorkbook but it's not working...
some help pls....
Thanks a mil.
Sub HideTabs()
If ActiveWindow.DisplayWorkbookTabs = True Then
ActiveWindow.DisplayWorkbookTabs = False
End If
End Sub