custom form for mail message

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to create a cutom form for mail message for some particualr incoming
mails.

In the NewInspectors event, I check the message - if it's one I want to
handle, I want to show a totally custom form.

how to create a custom form for mail message in outlook programatically and
how to show that from for some particular messages?

Thanks a lotz in Advance.
 
Set the Inspector's CurrentItem to the message class of your custom form.

Programming questions like this are best posted in one of the programming
newsgroups.
 
Thanks a lotz..
How to Set the Inspector's CurrentItem to the message class of your custom
form?
Any example?
 
Outlook VBA example:

Application.ActiveInspector.CurrentItem.MessageClass =
"IPM.Note.MyMessageClass"
 
I got it.
Thanks a lotz for all your help.


Ken Slovak - said:
Outlook VBA example:

Application.ActiveInspector.CurrentItem.MessageClass =
"IPM.Note.MyMessageClass"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top