No, only tasks in your default Tasks folder can be assigned.

Signature
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.outlookcode.com/jumpstart.aspx
I have the same problem but have added a field from the Mail Fields TO to
the customised task form.
Does anyone have a script that I can add to the onclose function of the form
that will email the task to the recipient.
Thanks
Raphy
No, only tasks in your default Tasks folder can be assigned.

Signature
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.outlookcode.com/jumpstart.aspx
> Hi, I had thought to have a public folder so that everyone
> in the team can see all the assigned tasks and the updated
[quoted text clipped - 12 lines]
> Cheers
> Jonathan
Jonathan Parminter - 04 Dec 2003 22:02 GMT
Thanks for the idea Raphy,
use the write event with something like the following...
' standard email message...
set objMessage= Application.CreateItem(0)
with objMessage
.to ="jonathan@someplace.co.nz"
.subject = "test"
end with
objMessage.send
luck
Jonathan
>-----Original Message-----
>I have the same problem but have added a field from the Mail Fields TO to
[quoted text clipped - 24 lines]
>
>.