A
Anushya
Hi
when i try to browse thru all the folders in outlook recursively
starting from the root folder, i couldnot explore the USER FOLDERS
which comes straight under root folder.
Wot is the problem,
1)i am using folders(1) as the root folder??
2)Or the user folders created under root folder will not come under
root folder while exploring???
see my edited code below
IterateFolder(oNs.Folders[1]);
public static void IterateFolder(Microsoft.Office.Interop.Outlook.MAPIFolder
oFldr)
{
for(int intL = 1;intL <= oFldr.Folders.Count;intL++)
IterateFolder(oFldr.Folders[intL]);
}
Thanks
Anushya
when i try to browse thru all the folders in outlook recursively
starting from the root folder, i couldnot explore the USER FOLDERS
which comes straight under root folder.
Wot is the problem,
1)i am using folders(1) as the root folder??
2)Or the user folders created under root folder will not come under
root folder while exploring???
see my edited code below
IterateFolder(oNs.Folders[1]);
public static void IterateFolder(Microsoft.Office.Interop.Outlook.MAPIFolder
oFldr)
{
for(int intL = 1;intL <= oFldr.Folders.Count;intL++)
IterateFolder(oFldr.Folders[intL]);
}
Thanks
Anushya