J
Joel
Hi,
I run this scipt from a command button:
Sub CommandButton13_Click()
Set prps = Item.UserProperties
If prps("MonsterOpen") = "" Then
prps("MonsterOpen") = "1"
Item.Save
On Error Resume Next
End If
End Sub
Here's my problem:
Task folder on Public folder.
Person A opens up a task.
Hits command button.
Hits save and close.
Then person B opens up same task.
Edits a field.
Hits save and close button.
This causes person A and person B to get conflict message.
It's almost like Person A still has it open?
Thanks so much for your help - Joel
I run this scipt from a command button:
Sub CommandButton13_Click()
Set prps = Item.UserProperties
If prps("MonsterOpen") = "" Then
prps("MonsterOpen") = "1"
Item.Save
On Error Resume Next
End If
End Sub
Here's my problem:
Task folder on Public folder.
Person A opens up a task.
Hits command button.
Hits save and close.
Then person B opens up same task.
Edits a field.
Hits save and close button.
This causes person A and person B to get conflict message.
It's almost like Person A still has it open?
Thanks so much for your help - Joel