V
vonclausowitz
Hi All,
I use this code in Outlook.session to get the changing of a task and
then updating the field Updater:
Private Sub oTasks_ItemChange(ByVal Item As Object)
Dim oTask As TaskItem
Set oTask = Item
'If oTask.Complete = True Then
If oTask.Status = olTaskComplete Then
oTask.UserProperties("Updater") = "Lul " & Date
Else
MsgBox "Task item changed"
End If
Set oTask = Nothing
End Sub
When some user completes a task his name must be added to the field
Updater.
It doesn't seem to work however.
Marco
I use this code in Outlook.session to get the changing of a task and
then updating the field Updater:
Private Sub oTasks_ItemChange(ByVal Item As Object)
Dim oTask As TaskItem
Set oTask = Item
'If oTask.Complete = True Then
If oTask.Status = olTaskComplete Then
oTask.UserProperties("Updater") = "Lul " & Date
Else
MsgBox "Task item changed"
End If
Set oTask = Nothing
End Sub
When some user completes a task his name must be added to the field
Updater.
It doesn't seem to work however.
Marco