View Single Post
  #1  
Old January 15th 07, 04:18 PM posted to microsoft.public.outlook.program_addins
spareway
external usenet poster
 
Posts: 11
Default Publish form Issues

Hi,

I am trying to publish a form via an outlook addin. When I call
Publish Form, I get an exception that says: one or more paramters are
incorrect.

any ideas?

thanks,

craig


Outlook.MailItem theItem;
Outlook.FormDescription theDesc;

//Environment.GetFolderPath(Environment.SpecialFolde r.Personal)
Ol.MAPIFolder draftFolder =
OutlookApp.Session.GetDefaultFolder(Ol.OlDefaultFo lders.olFolderDrafts);
theItem = (Outlook.MailItem)
this.OutlookApp.CreateItemFromTemplate(formPath, draftFolder);
theDesc = theItem.FormDescription;
theDesc.DisplayName = formName;

Ol.MAPIFolder inboxFolder =
OutlookApp.Session.GetDefaultFolder(Ol.OlDefaultFo lders.olFolderInbox);
theDesc.PublishForm(Outlook.OlFormRegistry.olPerso nalRegistry,inboxFolder
);
theItem.Close(Outlook.OlInspectorClose.olDiscard);

Ads