View Single Post
  #1  
Old July 14th 08, 10:09 PM posted to microsoft.public.outlook.program_addins
Hichem Sarrai
external usenet poster
 
Posts: 1
Default List of explorers

Hi,
Is there an outlookApplication.Explorers[0].
and what is the difference with outlookApplication.Explorers[1].

When I initialize my outlook addin I do the following :

if (Explorers.Count = 1)
{
OutlookExplorersManager.AddExplorer(this, Explorers[1]);
}

If Explorers[0] exists would it be more logic to write :

if (Explorers.Count = 2)
{
OutlookExplorersManager.AddExplorer(this, Explorers[1]);
}


Thanks for answering...
Ads