+ Reply to Thread
Results 1 to 2 of 2

Tool bars and menus

  1. #1
    Forum Contributor funkymonkUK's Avatar
    Join Date
    01-07-2005
    Location
    London, England
    Posts
    500

    Tool bars and menus

    HI is there a some VBA code the will hide the tope tool bars and make what ever sheet is active to full screen (Similar to a powerpoint presnetation).

  2. #2
    Bob Phillips
    Guest

    Re: Tool bars and menus


    For Each oCB in Application.Commandbars
    If oCB.Visible Then
    oCB.Visible = False
    End If
    Next oCB

    Application.Commandbars(1).Enabled = False

    You will need to rest at the end.

    --
    HTH

    Bob Phillips

    "funkymonkUK" <[email protected]>
    wrote in message
    news:[email protected]...
    >
    > HI is there a some VBA code the will hide the tope tool bars and make
    > what ever sheet is active to full screen (Similar to a powerpoint
    > presnetation).
    >
    >
    > --
    > funkymonkUK
    > ------------------------------------------------------------------------
    > funkymonkUK's Profile:

    http://www.excelforum.com/member.php...o&userid=18135
    > View this thread: http://www.excelforum.com/showthread...hreadid=375588
    >




+ 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