#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 62
Default The title bar

Hi all,

I have a microsoft excel project that has the title "Customer
Support",but it appears in the upper part of the page "the blue one" as
"Microsoft Excel - Customer Support".

Is there a way to erase the word "Microsoft Excel" ?

Thanx
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default The title bar

Try this:-

probably best placed in the workbook_open event. From your description it
seems like you workbook is called Customer support which populates into the
title bar. This will delete the Microsoft Excel bit.

Sub sistence()
Application.Caption = ""
End Sub

Mike

"Pietro" wrote:

Hi all,

I have a microsoft excel project that has the title "Customer
Support",but it appears in the upper part of the page "the blue one" as
"Microsoft Excel - Customer Support".

Is there a way to erase the word "Microsoft Excel" ?

Thanx

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default The title bar

Pietro

Private Sub Workbook_Open()
Application.Caption = "Customer Support"
ActiveWindow.Caption = ""
End Sub

Private Sub Workbook_BeforeClose(Cancel As Boolean)
Application.Caption = ""
ActiveWindow.Caption = ""
End Sub


Gord Dibben MS Excel MVP

On Thu, 21 Jun 2007 23:55:00 -0700, Pietro
wrote:

Hi all,

I have a microsoft excel project that has the title "Customer
Support",but it appears in the upper part of the page "the blue one" as
"Microsoft Excel - Customer Support".

Is there a way to erase the word "Microsoft Excel" ?

Thanx


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
where's my title bar? sf Excel Discussion (Misc queries) 1 October 7th 06 02:17 PM
Named range=Column title,comumn title in cellB6 use B6in equation Graham Excel Discussion (Misc queries) 2 July 21st 06 10:03 AM
Title in row 1 QuestionMan Excel Discussion (Misc queries) 1 January 26th 06 03:07 AM
Show full path title in title bar? Nor New Users to Excel 4 November 4th 05 06:00 PM
Pasting Objects into Chart title and Axis title Sam Charts and Charting in Excel 1 June 6th 05 08:50 PM


All times are GMT +1. The time now is 01:24 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"