View Single Post
 
Old 12-28-2011, 06:16 AM
Jamal NUMAN Jamal NUMAN is offline Windows 7 64bit Office 2010 64bit
Expert
 
Join Date: Nov 2010
Posts: 615
Jamal NUMAN is on a distinguished road
Question

Quote:
Originally Posted by macropod View Post
Hi Jamal,

I've previously provided code to show the document name, path, etc in the titlebar, via:
.Caption = ActiveDocument.FullName
You could modify that to inlcude the Word version # via code like:
.Caption = "Word " & Application.Version & ": " & ActiveDocument.FullName
Do note that this shows the actual version # (eg 12.0 for Word 2007), not the marketing name. I don't think you can make the Version # appear after the 'Microsoft Word' string that appears on the title bar.
Thank you Paul for the answer.

I'm wondering why it is impossible to show the version of the Word:
1. as year version like 2007, 2010, ...
2. to appear after the 'Microsoft Word'?

Reply With Quote