How to know the version of outlook version

N

Nagaraj

Hi,

I am developing outlook 2003 VSTO plugin project. How can I get
programatically the outlook version (in this case 2003) ?

Thanks in advance
 
J

j

Hi,

I am developing outlook 2003 VSTO plugin project. How can I get
programatically the outlook version (in this case 2003) ?

Thanks in advance

Use the Version property.

private void ThisApplication_Startup(object sender, EventArgs
e)
{

string currentOutlokVersion = this.Version
...... . . .
. . . . . . . .
}
 

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