Click here to Skip to main content
15,886,798 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I wrote following code for get names of inbox sub folder
private void comboBoxInboxFolders_SelectedIndexChanged(object sender, EventArgs e)
     {
         LoadEmailFolderCombo(comboBoxInboxFolders);
     }

     private void LoadEmailFolderCombo(ComboBox nbFolders)
     {

         OutLook._Application outlookObj = new OutLook.Application();
         OutLook.MAPIFolder emailFolder = (OutLook.MAPIFolder)
          outlookObj.Session.GetDefaultFolder(OutLook.OlDefaultFolders.olFolderInbox);

         if (!nbFolders.Items.Contains("Default"))
         {
             nbFolders.Items.Add("Default");
         }
         foreach (OutLook.MAPIFolder subFolder in emailFolder.Folders)
         {
             if (!nbFolders.Items.Contains(subFolder.Name))
             {
                 nbFolders.Items.Add(subFolder.Name);
             }
         }

     }


but it wont give any output and it is running pls tell me wht is the issue there ..i am using outlook 12.0 object library
Posted
Updated 13-Jun-10 2:16am
v3
Comments
Henry Minute 13-Jun-10 8:38am    
Please do not be offended. It's just that I have noticed a lot of requests from you about the same project. I put the smiley on the end to indicate that I was joking. If I knew anything about Outlook programming I would try to help you, but I don't even use Outlook. Good luck!
Kasunmit 13-Jun-10 8:43am    
ok ok i know that u r joking friend ... i add that comment because some other ppl r in code project also might think that i am using their knowledge for my personal gain or earn income ... i was not offended because u ppl have right to tell that cos i am the one who disturbing u every time .. :D

1 solution

How much are you paying the nice people here at Code Project who have, piece by piece, completed your project? :-D
 
Share this answer
 
Comments
Kasunmit 13-Jun-10 8:31am    
:P i apologizing for disturbing u ppl .. but this is not a project that i can earn .. if it is so i can get help from experts by paying them or get training but this effort is only for get done my university project for academic purpose .... i need to tell that this is my 1st project so i have no idea about programming ... i can t pay any of u coz i dnt have any sort of income yet... only thing i can give u is thnx and smile ...

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900