Outlook Customise Forms?
C#
1
Posts
1
Posters
0
Views
1
Watching
-
I am trying to make a form in outlook that I can manipulate to add controls to. I see that each item type is strongly typed and cannot see a generic class that I could inherit from as such. I thought that the OlItemType.olNoteItem would be a simple type and would like to be able to manipulate the form just like it was a windows form. Can anyone point me in the right direction? I can create this note by doing this... NoteItem objNoteItem = (NoteItem)applicationObject.CreateItem(OlItemType.olNoteItem); Now I would like to change the interface of objNoteItem and place buttons and text fields and listen for events.