- 1). Create a new folder using the C# code example below:
Outlook._Application oApplication = new Outlook.ApplicationClass();
Outlook._NameSpace oNamespace = oApplication.GetNamespace("MAPI");
Outlook.MAPIFolder oInbox = oNamespace.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderInbox);
Outlook.Folders oFolders = oInbox .Folders;
Outlook.MAPIFolder oPersonal = oFolders.Add("Personal Messages"); - 2). Add a folder with Visual Basic for Applications (VBA) by copying the following code:
Dim oNamespace As Outlook.NameSpace
Dim oInbox As Outlook.Folder
Dim oNewFolder As Outlook.Folder
Set oNamespace = Application.GetNamespace("MAPI")
Set oInbox = oNamespace.GetDefaultFolder(olFolderInbox)
Set oNewFolder = myFolder.Folders.Add("New Folder") - 3). Create an additional Outlook folder with VB.NET by using the following code:
Dim oOutlook As Outlook._Application
oOutlook = New Outlook.Application()
Dim oNamespace As Outlook._NameSpace = oOutlook.Session
Dim oInbox As Outlook.MAPIFolder = oNamespace.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderInbox)
Dim oNewFolder As Outlook.MAPIFolder = oInbox.Folders.Add("Personal Folder")
next post