hi,
I am trying to rename the Microsoft CRM root folder to the company name ( due to company policy)
I have tried to change the name programmatically using .net code and i have tried VBA also but It doesn't work
I can rename other folders in outlook but i cannot rename the display name for CRM root folder
I have changed the name but it still show Microsoft Dynamics CRM in outlook
below is my code
Microsoft.Office.Interop.Outlook.Application
olApp = new Microsoft.Office.Interop.Outlook.Application();
Microsoft.Office.Interop.Outlook.MAPIFolder
folder =
olApp.Session.GetFolderFromID(entryid, storeid);
folder.Name = "ABC company"
Thanks
Marwa