Hello VBA guy's,
I'm trying to open an excel file as full screen mode without toolbar's.
I have tried the codes bellow but it didn't worked and nothing has changed.
Can you assist on making that happen?
In the VBA editor should i select something in the drop-down menus?
VBA editor screen:
[ATTACH=CONFIG]70859[/ATTACH]
Code 1:
Code
Private Sub Workbook_Activate()
On Error Resume Next
With Application
.DisplayFullScreen = True
.CommandBars("Worksheet Menu Bar").Enabled = False
End With
End Sub
Code 2: