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 to check word version for chart

Status
Not open for further replies.

fairfaxVB

Programmer
Nov 3, 2005
46
US
Hi friends,
I use a chart object class ChartSpace1 for chart in web application. however, user's PC install different version wrod 2000/2002,2003, XP.
Do we have any way to detect user's PC word version?
So we can use logic control to use different object classid.
also how do we install this chart object in server side?
any detail steps?

Thanks very much!!
Fairfax
 
A starting point:
Dim objWord
Set objWord = CreateObject("Word.Application")
MsgBox "Your word version: " & objWord.Version
objWord.Quit
Set objWord = Nothing

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top