View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
Glauco Glauco is offline
external usenet poster
 
Posts: 4
Default How to 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) after i run the macro below. How
can i do this? I just don't want to see that.

With ActiveWindow
.WindowState = xlNormal
.Top = 20
.Left = 1
.Height = 200
.Width = 300
End With

I'll have many windows in the screen, and i don't wanna see any title bar in
the screen. Thanks.