+ Reply to Thread
Results 1 to 2 of 2

VBA Code to hide Ribbon Bar

Hybrid View

  1. #1
    Registered User
    Join Date
    11-29-2016
    Location
    Australia, Dandenong
    MS-Off Ver
    Office 2010
    Posts
    1

    VBA Code to hide Ribbon Bar

    Hi everyone, I have produced a excel order for one of our clients but I hate that they can see the Ribbon bar would prefer to see it shown as a full screen no ribbon bar unless I need to work on it, this VBA code needs to work every time the order form is opened. I have tried a lot of code but had no luck with it sticking every time it is opened. can anyone help with a simple VBA code, or have a better solution for to get the result I want.

  2. #2
    Forum Expert Logit's Avatar
    Join Date
    12-23-2012
    Location
    North Carolina
    MS-Off Ver
    Excel 2019 Professional Plus - 2007 Enterprise
    Posts
    7,414

    Re: VBA Code to hide Ribbon Bar

    Using this syntax in ThisWorkBook:

    Private Sub Workbook_Open()
        'These commands disable the menu bar.
       
        Application.ExecuteExcel4Macro "SHOW.TOOLBAR(""Ribbon"",False)"
    End Sub
    
    Private Sub Workbook_BeforeClose(Cancel As Boolean)
        'These commands re-enable the menu bar so other workbooks
        'won't be affected.
        
        Application.ExecuteExcel4Macro "SHOW.TOOLBAR(""Ribbon"",True)"
    End Sub
    Use ALT / F11 to get to the VBEditor. From there you can comment out the
    two commands in ThisWorkbook, save the workbook, then close it.

    When you reopen the workbook the menu will be available again allowing you to
    work on the contents.
    Attached Files Attached Files
    Last edited by Logit; 11-30-2016 at 12:28 AM.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [VBA CODE] Excel - Hide Ribbon but leave File menu
    By cityinbetween in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 09-05-2014, 09:55 PM
  2. [SOLVED] Hide Ribbon
    By pedjvak in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 08-31-2013, 03:01 AM
  3. Hide the Ribbon in Excel
    By Aland2929 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 07-17-2013, 12:33 PM
  4. Hide ribbon and toolbar
    By NathalieF in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 06-21-2013, 04:34 AM
  5. Code to hide Ribbon
    By davidm in forum Excel Programming / VBA / Macros
    Replies: 11
    Last Post: 03-06-2012, 04:06 AM
  6. Hide Tab on Custom Ribbon
    By WilliamJones in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 01-05-2011, 08:53 AM
  7. Ribbon - Hide the Get Started tab
    By paulzak in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 05-19-2009, 09:03 AM

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