Word v.X version number...

C

Carnac

I am using Panther 10.3.1 and Office v.X. I have installed the 10.1.5
updater.

All of my Office applications show version 10.1.5 in their get info
window, execpt for Word - it still shows version 10.1.4.

Is this correct? Are other people seeing the same thing?

On a somewhat seperate notd, I sure wish that MS would put version
number in the "About Word" dialog and not just by a get info from the
application itself.
 
E

Elliott Roper

Carnac said:
I am using Panther 10.3.1 and Office v.X. I have installed the 10.1.5
updater.

All of my Office applications show version 10.1.5 in their get info
window, execpt for Word - it still shows version 10.1.4.

Is this correct? Are other people seeing the same thing?

On a somewhat seperate notd, I sure wish that MS would put version
number in the "About Word" dialog and not just by a get info from the
application itself.

It is correct. 10.1.4 is what you see after upgrading to 10.1.5 And
yes, with the blithering flakiness of the upgrade process, you would
think that they would go to a bit more trouble to reassure you that the
upgrade succeeded.
 
S

Steve S.

Carnac said:
I am using Panther 10.3.1 and Office v.X. I have installed the 10.1.5
updater.

All of my Office applications show version 10.1.5 in their get info
window, execpt for Word - it still shows version 10.1.4.

Is this correct? Are other people seeing the same thing?

On a somewhat seperate notd, I sure wish that MS would put version
number in the "About Word" dialog and not just by a get info from the
application itself.

Same thing. Except now my word crashes at startup, but not excel or powerpoint
 
A

Arno Wouters

Carnac said:
I am using Panther 10.3.1 and Office v.X. I have installed the 10.1.5
updater.

All of my Office applications show version 10.1.5 in their get info
window, execpt for Word - it still shows version 10.1.4.

Is this correct? Are other people seeing the same thing?

I see the same. I assume the 10.1.5 updater does not update Word.
On a somewhat seperate notd, I sure wish that MS would put version
number in the "About Word" dialog and not just by a get info from the
application itself.

Hear, hear!
 
H

Howard Kaikow

Try running the following macro with a blank Word document.

' Author: Howard Kaikow
' Author URL: http://www.standards.com/
' Author email address: (e-mail address removed)
' Date: A long time ago, revised 17 December 2003
Option Explicit

Private Sub WhoAmI()
'Determine Word version
Dim rngDocument As Range
Dim strTemp As String

Set rngDocument = ActiveDocument.Content
With rngDocument
.InsertParagraphAfter
.InsertAfter Text:="Operating system: " & System.OperatingSystem & "
" & System.Version
.InsertParagraphAfter
.InsertAfter Text:="Word version: " & Application.Version
.InsertParagraphAfter
.InsertAfter Text:="Word build: " & Application.Build
.InsertParagraphAfter
#If VBA6 Then
.InsertAfter Text:="Using VBA 6"
.InsertParagraphAfter
#Else
.InsertAfter Text:="Using VBA 5"
.InsertParagraphAfter
#End If
On Error Resume Next
strTemp = WordBasic.[GetSystemInfo$](512)
If Err.Number = 0 Then
.InsertAfter Text:="It's not Microsoft Windows"
.InsertParagraphAfter
Else
.InsertAfter Text:="It's Microsoft Windows"
.InsertParagraphAfter
End If
On Error GoTo -1: On Error GoTo 0
End With
End Sub
 
J

John McGhie

Yeah, we have been asking for the version number in Word/About for some
time. Guess what? A little bird tells me that it might be in the next
version :)
 
C

Clive Huggan

Two little birds in 48 hours! My, your taking up ornithology with such
gusto is certainly having spin-offs around here, John!

--Clive Huggan
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top