Outlook Project Management Template

  • Thread starter Thread starter Ron Marsden
  • Start date Start date
R

Ron Marsden

Some time ago I added the template above to Outlook
97/98. My company has since upgraded to Outlook 2002 SP-
2 and I am now getting an error when I try to notify
someone that they have a task assigned to them I get a
runtime error which I am unable to debug.

Please help.

Ron M.
 
Have you tried stepping through the code in the form's script to determine
which statement is generating the error?
 
Sue,

Yes, I've tried bur this is an area where i don't have
much expertise.

The debugging points to the statement shown below. It
stops at "Item.actions("Send Mail").Execute"

The mail actually gets sent but the attachment, which is
supposed to be a task, cannot be opened.

Any thoughts?


Sub TaskMail_Click

Item.save
Temp = MsgBox("Mail will now be sent to the
assigned person, informing him/her that there is a task
for them in this folder",0,"Sending Mail")
Assigned = item.userproperties.find
("TempTo").value
Item.actions("Send Mail").Execute
End Sub

Ron marsden
 
What does the Send Mail custom action do? In general, it's not good to use
Action.Execute, since it's a blocked method in Outlook 2000 SP2 and later
versions.

--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
Back
Top