I have the below code in my workbook open event. All works well except when the users clicks on the "Restore" or Ribbon dropdown icon, the status bar shows up at the bottom of the screen. I need the full screen and the status bar takes up space I need. How do I prevent it from showing up. Note that I have tried to just hide the total title bar at the top of the excel application but can't seem to find code to do this.

Application.ExecuteExcel4Macro "SHOW.TOOLBAR(""Ribbon"",False)"
  Application.ScreenUpdating = False
  Application.EnableCancelKey = xlDisabled
  Application.EnableEvents = False
  Application.Calculation = xlCalculationManual
  Application.DisplayFullScreen = True
  Application.DisplayStatusBar = False
  Application.DisplayFormulaBar = False
  Application.AutoRecover.Enabled = False
  Application.EnableEvents = True
  Application.CellDragAndDrop = False
  Application.EnableAutoComplete = False
  Application.CommandBars(1).Enabled = False
  Application.ScreenUpdating = True