Is it possible to set the To textbox to be read-only when you create and display a mail message in outlook with Office automation? We use the following code to create the message:
Outlook.Application objOutlook = new Outlook.Application();
Outlook.MailItem mail = (Outlook.MailItem)objOutlook.CreateItem(OlItemType.olMailItem);
// setting properties...
mail.Display(modal);