When user click "Save" button my Custom Form saved in Outlook Public folder with fields From and Subject. I want to append some text to the Item.Subject property to have "Subject" field updated in the Outlook folder after custom form saved. This is example of my code:
Function Item_Write()
Item.Subject = Item.Subject & "abc"
End Function
But when form save in the Outlook folder, Subject in public folder not updated, it is the same as original Item.Subject. Is it possible to update Subject field in public folder?
Function Item_Write()
Item.Subject = Item.Subject & "abc"
End Function
But when form save in the Outlook folder, Subject in public folder not updated, it is the same as original Item.Subject. Is it possible to update Subject field in public folder?