P
Peter
I am trying to custmize a message in Outlook form, when user opens the form
I want to display an html message, the following code works, but my personal
signature is always at the top of the message after the forms opens. How
can I remove all the text form the message and add my html message?
Here's my code
Function Item_Open()
Item.HTMLBody = ""
Item.HTMLBody = "<html><head><title>WELCOME</title></head><body
bgcolor=lightyellow>This is a Test</body></html>"
End Function
Peter
I want to display an html message, the following code works, but my personal
signature is always at the top of the message after the forms opens. How
can I remove all the text form the message and add my html message?
Here's my code
Function Item_Open()
Item.HTMLBody = ""
Item.HTMLBody = "<html><head><title>WELCOME</title></head><body
bgcolor=lightyellow>This is a Test</body></html>"
End Function
Peter