View Single Post
  #2  
Old July 30th 09, 12:35 PM posted to microsoft.public.outlook.program_addins
j
external usenet poster
 
Posts: 109
Default How to know the version of outlook version

On Jul 30, 1:10*pm, Nagaraj wrote:
Hi,

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

Thanks in advance

--
Nagaraj Tadipatri


Use the Version property.

private void ThisApplication_Startup(object sender, EventArgs
e)
{

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