andrewb90
Well-known Member
- Joined
- Dec 16, 2009
- Messages
- 1,077
Hello all,
During workbook open, I have several things that happen including going fullscreen. Now I have a line to make the status bar show up, but it doesn't seem to. Is there a happy median to the view that I want?
During workbook open, I have several things that happen including going fullscreen. Now I have a line to make the status bar show up, but it doesn't seem to. Is there a happy median to the view that I want?
Code:
Private Sub Workbook_Open()Application.OnKey "{F2}", "module5.pophelp"
Application.OnKey "{F4}", "module5.XAB"
'Application.DisplayFullScreen = True
Application.DisplayFormulaBar = False
ActiveWindow.DisplayHeadings = False
ActiveWindow.DisplayGridlines = False
Application.DisplayStatusBar = True
Application.OnKey "%{F11}", "module5.nope"
Application.OnKey "{ESC}", "module5.esc"