Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
need c# code for show inbox sub folders in button click

i already created the code for create sub folders inside the inbox folder
it is as follows

C#
private void btnSave_Click(object sender, EventArgs e)
       {
           if (string.IsNullOrEmpty(txtSave.Text.Trim().ToString()))
           {
               MessageBox.Show("Enter name");
               return;
           }
           else
           {
               CreateInboxFolder();

           }





       }

       private void CreateInboxFolder()
       {

           try
           {
           string folderName = txtSave.Text.ToString();
           OutLook._Application olApp = new OutLook.ApplicationClass();
           OutLook._NameSpace olNs = olApp.GetNamespace("MAPI");
           OutLook.MAPIFolder oInbox = olNs.GetDefaultFolder(OutLook.OlDefaultFolders.olFolderInbox);
           OutLook.Folders oFolders = oInbox.Folders;
           OutLook.MAPIFolder oInboxFolders = oFolders.Add(folderName, OutLook.OlDefaultFolders.olFolderInbox);
           MessageBox.Show("Folder " + oInboxFolders.Name + " is Created");
           }
           catch (Exception)
           {

               MessageBox.Show(txtSave.Text + " folder already created please enter differetnt name");
               txtSave.Focus();
           }




       }


pls tell me how to do it ... i was struck at that point in my project :confused::confused:
Posted
Updated 12-Jun-10 23:52pm
v3

1 solution

See here.
 
Share this answer
 

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