Item_Close Event and public folder lists

B

Bob Trucchi

I have an outlook form which is the default form for a public folder.
I update an Oracle database by catching the Item_Close Event. Some of
the fields I save in the database are % complete and status. This all
works fine. The problem I have is I would like to be able to update
the database when someone changes the status (or other fields) using
the list view instead of opening the form. Is this possible? If not is
it at least possible to make it so the list view is read only on this
folder?

Thanks.
 
G

Guest

You can use the event change to submit changes to the
database:
Sub Item_PropertyChange(ByVal Name)
End Sub

And for custom fields
Sub Item_CustomPropertyChange(ByVal Name)
End Sub
 

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