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

Signature
Nagaraj Tadipatri
j - 30 Jul 2009 12:35 GMT
> Hi,
>
[quoted text clipped - 5 lines]
> --
> Nagaraj Tadipatri
Use the Version property.
private void ThisApplication_Startup(object sender, EventArgs
e)
{
string currentOutlokVersion = this.Version
...... . . .
. . . . . . . .
}