R
Rupang
Here is one query that I have for the way Outlook Inspector object works.
Below are the sequences of steps:
1. User clicks on a Contact Item to open it.
2. Inspector New event will fire and new contact item is created Within New
(Constructor) we modify the underlying data for that item say change the
First Name (using myItem.PropertyName=<New Value> where myItem is a new
Contact Item that we created using code like:
myItems = m_ContactFolder.Items
myItem = myItems.Find("[AppID] = '" & strAppID & "'")
3. Then the Inspector Open event will fire and when the item gets displayed
it shows the old value in the First Name Field, however in the explorer
window we can see that the value is changed.
The question is how do we make sure that we see the changes that we have
made while in the New Inspector in to the form when it opens?
Thanks,
Rupang
Below are the sequences of steps:
1. User clicks on a Contact Item to open it.
2. Inspector New event will fire and new contact item is created Within New
(Constructor) we modify the underlying data for that item say change the
First Name (using myItem.PropertyName=<New Value> where myItem is a new
Contact Item that we created using code like:
myItems = m_ContactFolder.Items
myItem = myItems.Find("[AppID] = '" & strAppID & "'")
3. Then the Inspector Open event will fire and when the item gets displayed
it shows the old value in the First Name Field, however in the explorer
window we can see that the value is changed.
The question is how do we make sure that we see the changes that we have
made while in the New Inspector in to the form when it opens?
Thanks,
Rupang