Conflict Message - Outlook 2003 Task

J

Joel

My custom form is in a public folder.
When two people are in a task and they save it, we get a
conflict message e-mail and it gives us the option of
saving one of the two or both Tasks.

How can I make it so that when someone opens up a task, it
sets it as read only, so that when another person opens
the task it says that it's read only?

My goal is to avoid these conflict messages.

Thanks for your help,
Joel
 
K

Ken Slovak - [MVP - Outlook]

In Item_Open check a Boolean UserProperty on the item to see if it's True.
If it is someone else has it opened first. Then disallow saving that item
(cancel in Write and you can lock your controls). If it's False set it to
True so other users will see it as read-only. When you exit the form clear
that property back to False.
 
J

Joel

Ken,

Thanks for your reply. I've been trying this for a while
and can't seem to get it. Do you possibly have a code
sample you could supply me with to get me going in the
right direction? Your help is greatly appreciated.

-Joel
 
K

Ken Slovak - [MVP - Outlook]

'module level declaration:
Dim blnReadOnly

Function Item_Open()
If Item.UserProperties("ReadOnly") Then
blnReadOnly = True
Else
blnReadOnly = False
End If
End Function

'check in Item_Write and if True then Item_Write = False
'in Item_Close if Item.UserProperties("ReadOnly") then set it False and set
blnReadOnly False and save.
 
Joined
Dec 15, 2010
Messages
4
Reaction score
0
Hi Joel,

I have the same issue and was wondering if you could point out what you changed?
I am at lower level VBA and wanted to know if you had the code you used to set the task as read only if someone was editing it - as you wanted in 2004...Many thanks , CJS
 

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