Ads

Custom logo design for just $99 USD!
Showing posts with label Macro. Show all posts
Showing posts with label Macro. Show all posts

Thursday, May 12, 2011

Change title bar of MS Word, Excel, PowerPoint

Document1 Microsoft Word is the text you see on the title-bar of MS Word. But you can change the text "Microsoft Word" by any other text. it just require a single line of code. The same code will change the text ot MS Word, MS Excel, MS Power Point also.

Just open MS Word, go to Tools->Macros-> New Macro.
Create a macro with the name 'Autoexec"
Edit it with visual basic editor.
Type just a line:-   application.caption = "YOUR TEXT"

The macro will be like this.
sub autoexec()
application.caption = "Your Text"
end sub

Use this process for Excel, Power Point etc also.