
How to add a task to a selected outlook user.
I don't know if this is what you mean, but if you can get the
MAPIFolder object of the user you want to make an appointment for. You
can code something like:
oDestinationFolder.Items.Add(olTaskItem).
You can get the users folder by calling
NameSpace.GetSharedDefaultFolder(Recipient, olFolderTasks).
You need the rights to create tasks in the users folder.
Hope this is what you mean.
Quote:
> How can I add a task to a selected outlook user? I found a
> way to add task to myself BUT I can't add tasks to another
> users in our LAN. Please HELP.