Getting Outlook version number

C

Charlotte E.

Hi all,


I'm running Excel 2003 and Outlook 2010.

Is it possible to obtain the version of Outlook from Excel VBA?


TIA,

CE
 
R

Ron Rosenfeld

Hi all,


I'm running Excel 2003 and Outlook 2010.

Is it possible to obtain the version of Outlook from Excel VBA?


TIA,

CE

With Excel 2007, the following works:

==============================
Option Explicit
Sub GetOutlookVersion()
Dim objOL As Object
Set objOL = CreateObject("Outlook.Application")
Debug.Print objOL.Version
End Sub
=========================
 
C

Charlotte E.

It also works in XL2003 :)

Thanks...


CE


Den 24.03.2013 13:03, Ron Rosenfeld skrev:
 

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