K
Kan Tong
i have created a outlook custom form in OL2002 using non-message based
form, when the user create a new form, the new item has been post to
the corresponding public folder successfully after hitting the "Post"
button with an empty "Item_Write" routine.
However, we would like to do the form post to the public folder AND
forward the form to a list of administrator for their approval,
therefore, I modify the "Item_Write" routine as follows:
Function Item_Write()
set newmail = item.Forward
newmail.To = [a list of admin users]
newmail.send
End Function
when hitting the "Post" button, it popup a "Script Error" on
"set newmail = item.Forward" saying "That action is not available for
this item", i have also try "item.Forwardvcard" (i forget the exact
wording now, but it's correct when the time that i try it), it comes up
the same error
Any help are welcome, thanks in advance
form, when the user create a new form, the new item has been post to
the corresponding public folder successfully after hitting the "Post"
button with an empty "Item_Write" routine.
However, we would like to do the form post to the public folder AND
forward the form to a list of administrator for their approval,
therefore, I modify the "Item_Write" routine as follows:
Function Item_Write()
set newmail = item.Forward
newmail.To = [a list of admin users]
newmail.send
End Function
when hitting the "Post" button, it popup a "Script Error" on
"set newmail = item.Forward" saying "That action is not available for
this item", i have also try "item.Forwardvcard" (i forget the exact
wording now, but it's correct when the time that i try it), it comes up
the same error
Any help are welcome, thanks in advance