A
Alan Campbell
Hi,
I found code below in this group to create an action based on voting
buttons and modified to fit my needs. However, I have read in several
threads that custom actions are complicated and not generated in vb.
What does the function below do?
My intention was to have the body of the email remain in the response
when the recipient voted. Any help or explanation would be greatly
appreciated. Also, if this code does work as written, where would I
place it (e.g. module)? Thanks in advance.
Alan
Function Item_CustomAction(ByVal Action, ByVal NewItem)
If Action.Name = "V_Approved" Or Action.Name = "V_Rejected" Then
NewItem.Body = Item.Body
End If
End Function
I found code below in this group to create an action based on voting
buttons and modified to fit my needs. However, I have read in several
threads that custom actions are complicated and not generated in vb.
What does the function below do?
My intention was to have the body of the email remain in the response
when the recipient voted. Any help or explanation would be greatly
appreciated. Also, if this code does work as written, where would I
place it (e.g. module)? Thanks in advance.
Alan
Function Item_CustomAction(ByVal Action, ByVal NewItem)
If Action.Name = "V_Approved" Or Action.Name = "V_Rejected" Then
NewItem.Body = Item.Body
End If
End Function