G
Gary Hillerson
I'm trying to branch some code based on Aplication.Version numbers; I
know that 2007 is version 12, and Word 2003 , but I don't know the
other version numbers, and haven't been able to find them. Can someone
help?
Specifically, I need to differentiate Office 2007 versus Office 2000
or 2003, versus earlier versions. I'm guessing I can use this code:
Dim versStr as String
Select Case CInt(Application.Version)
Case >=12: versStr = "Word 2007"
Case 11: versStr = "Word 2003"
Case 10: versStr = "Word 2000"
Case Else: versStr = "Word 97 or earlier"
End Select
Can anyone verify these numbers for me??
thanks
gary
know that 2007 is version 12, and Word 2003 , but I don't know the
other version numbers, and haven't been able to find them. Can someone
help?
Specifically, I need to differentiate Office 2007 versus Office 2000
or 2003, versus earlier versions. I'm guessing I can use this code:
Dim versStr as String
Select Case CInt(Application.Version)
Case >=12: versStr = "Word 2007"
Case 11: versStr = "Word 2003"
Case 10: versStr = "Word 2000"
Case Else: versStr = "Word 97 or earlier"
End Select
Can anyone verify these numbers for me??
thanks
gary