modify contact when chages are not made to form region

S

sd

hello
I've shown separate Form region to contact form(not adjoining) through
VSTO addin.My Wrapper class for this form region is instantiated when
I navigate to that form region page.I make a copy of contact to other
folder in wrapper class code when user save & close it . The problem
is for existing contact. when user make changes to General page ,
Save & Close the contact without navigating to my Form region page ,
the copy doesn't get modified (since wrapper class doesn't
instantiated).How to reflect changes to copy of contact
when user save & closes contact without navigating to my form region
page?

thanks in advance
 
K

Ken Slovak - [MVP - Outlook]

Have your addin implements a handler for item.Write() so you can trap that
condition. You may also need to handle item.Close().
 
S

sd

thanks ken
I implemented Item_write in addin.But if the user opens multiple
inspector windows then
do I've to take multiple Contactobjects?
thanks again
 
K

Ken Slovak - [MVP - Outlook]

The way to handle multiple open Inspectors (or multiple open Explorers) is
with a wrapper class and collection of wrapper classes. Each class handles
events for its own Inspector and therefore doesn't interfere with handling
any other Inspector.

I have sample VS2005 projects for shared and VSTO addins for Outlook 2007
posted on my Web site that implement Inspector and Explorer wrappers. The
samples are available in both C# and VB.NET and would give you an idea of
how to handle things like that. You can check them out at
http://www.slovaktech.com/outlook_2007_templates.htm if you want.




thanks ken
I implemented Item_write in addin.But if the user opens multiple
inspector windows then
do I've to take multiple Contactobjects?
thanks again
 

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

Top