Finding Word Version

K

Ken

Can anyone tell me how to determine in VBA the Word version number (
e.g. 2000, 2003 etc) and preferably also the SP number?
 
J

Jay Freedman

The property Application.Version contains the version number, not the
version's marketing name. The correspondence is

12.0 = Word 2007
11.0 = Word 2003
10.0 = Word 2002 (Office XP)
9.0 = Word 2000
8.0 = Word 97

The Application.Build property tells you the version and build number.
I don't have a list of those handy, but in Word 2003 SP2 it returns
11.0.8106.

--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.
 
K

Ken

Thanks Jay

I have a more complex question about VBA & document versions so I will
start a new topic

Regards
Ken
 

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