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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Get Office version?

Status
Not open for further replies.

NorthNone

Programmer
Jan 27, 2003
445
US
Is there an easy way to get the Microsoft Office version installed on a user's machine?


"Character cannot be developed in ease and quiet. Only through experience of trial and suffering can the soul be strengthened, ambition inspired, and success achieved." - Helen Keller
 
I cheated. I added an "About" dialog box to my project and borrowed the code behind the systems info button.

Before you criticize someone, you should walk a mile in their shoes.
That way, when you criticize them, you're a mile away and you have their shoes.
 
>the Microsoft Office version

It may not be quite that easy because it is possible to have applications from various 'Office' versions on one machine. Stuff like this will get the version of the individual applications.

Private Sub Command1_Click()

With CreateObject("Excel.Application")

MsgBox "Excel v" & .version

End With

End Sub

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top