PC Review Forums Newsgroups Microsoft Outlook Microsoft Outlook Form Programming Item_Close Event and public folder lists

Reply

Item_Close Event and public folder lists

 
Thread Tools Rate Thread
Old 07-07-2003, 07:55 PM   #1
Bob Trucchi
Guest
 
Posts: n/a
Default Item_Close Event and public folder lists


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.
  Reply With Quote
Old 07-07-2003, 08:59 PM   #2
Guest
 
Posts: n/a
Default Item_Close Event and public folder lists

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



>-----Original Message-----
>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.
>.
>

  Reply With Quote
Old 14-07-2003, 12:13 AM   #3
Sue Mosher [MVP]
Guest
 
Posts: n/a
Default Re: Item_Close Event and public folder lists

Try using the Item_Write event handler instead of Item_Close.
--
Sue Mosher, Outlook MVP
Outlook and Exchange solutions at http://www.slipstick.com
Author of
Microsoft Outlook Programming: Jumpstart
for Administrators, Power Users, and Developers
http://www.slipstick.com/books/jumpstart.htm


"Bob Trucchi" <trucchi@mpi.com> wrote in message news:2d6cbe11.0307071155.625d0b8c@posting.google.com...
> 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.

  Reply With Quote
Reply



Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off