Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I know which version of Word, (IF ANY) is installed on machine?

Status
Not open for further replies.

ftpdoo

Programmer
Aug 9, 2001
202
GB
Hi,

How can I check which version of MS Word is installed on a machine???

Thnx,
Jonathan
 
If you go to Control Panel then "Add/Remove Programs",
you can see what version of Office is installed.

From within Word, you can choose "About" from the Help
menu.

With VBA code, use:
rsp = MsgBox("Version: " + Application.Version, _
vbInformation, "Version")
 
Thnx,

Is there any way just to simply check is MS Word installed on the local machine from VBA code??

Jonathan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top