+ Reply to Thread
Results 1 to 3 of 3

How do I make Excel stay in Full-screen ?

  1. #1
    Registered User
    Join Date
    06-18-2007
    Posts
    22

    Question How do I make Excel stay in Full-screen ?

    I have made my excel-document start up in full-screen-mode by using an auto open macro with the following code:

    ---
    Please Login or Register  to view this content.
    ---

    But here is the problem:
    When I minimize Excel to the Taskbar and then maximize it again, it is no longer in full-screen-mode.

    What can we do to remedy this?
    Last edited by VBA Noob; 01-03-2008 at 09:54 AM.

  2. #2
    Registered User
    Join Date
    06-18-2007
    Posts
    22
    Any of you fellows got a solution for this one?

  3. #3
    Registered User
    Join Date
    03-11-2015
    Location
    Philippines
    MS-Off Ver
    2013
    Posts
    3

    Re: How do I make Excel stay in Full-screen ?

    Hey, you must put this into your standard module


    Option Explicit


    Sub HideAll()
    With Application
    .ExecuteExcel4Macro "SHOW.TOOLBAR(""Ribbon"",False)"
    .DisplayFormulaBar = False
    .DisplayStatusBar = Not Application.DisplayStatusBar
    End With
    ActiveWindow.DisplayWorkbookTabs = False


    End Sub


    Sub ShowAll()
    With Application
    .ExecuteExcel4Macro "SHOW.TOOLBAR(""Ribbon"",True)"
    .DisplayFormulaBar = True
    .DisplayStatusBar = True
    End With
    ActiveWindow.DisplayWorkbookTabs = True


    End Sub





    and put these code below on your ThisWorkbook Module

    Option Explicit

    application.screenupdating = true

    Private Sub Workbook_Activate()
    HideAll
    End Sub


    Private Sub Workbook_BeforeClose(Cancel As Boolean)
    ShowAll
    End Sub


    Private Sub Workbook_Deactivate()
    ShowAll
    End Sub


    Private Sub Workbook_Open()
    HideAll
    End Sub

    This will enable your program be always run in full screen whenever you run the program
    Last edited by sethmaceda; 04-10-2015 at 01:32 PM.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1