Consulting

Results 1 to 4 of 4

Thread: Hide Workbook Title Bar

  1. #1

    Hide Workbook Title Bar

    I want to hide the workbook title bar (the blue one, with the workbook name,
    the minimize, maximize and close buttons)

  2. #2
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    Why?
    ____________________________________________
    Nihil simul inventum est et perfectum

    Abusus non tollit usum

    Last night I dreamed of a small consolation enjoyed only by the blind: Nobody knows the trouble I've not seen!
    James Thurber

  3. #3
    Try.
    [VBA]Sub FullScr()
    Application.CommandBars("Worksheet menu bar").Enabled = False
    Application.DisplayFullScreen = True
    Application.OnTime Now + TimeValue("00:00:05"), "Macro1"
    End Sub
    Sub Macro1()
    Application.DisplayFullScreen = False
    End Sub
    [/VBA]

  4. #4
    Mr. xld
    You asked me why??
    It's just t prevent the user from using close button and to fill the screen..
    FullScreen property dosen't hide title bar

Posting Permissions

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