Attaching a screenshot

  • Thread starter Thread starter Eric
  • Start date Start date
E

Eric

I would like to have a tab where I can attach screen shots. The only way
that I have been able to make this work is to make a Message document field.
However, when I do this, it picks up the persons signature. Is there another
type of field I can select so the signature doesn't show up and I can still
attach a screen shot?

Thanks,
Eric
 
The message body is the only place where the user can paste a screen shot. You can use simple code like this to delete any signature on new messages:

Function Item_Open()
If Item.Size = 0 Then
Item.Body = ""
End If
End Function
 
Thank you very much!

Eric

Sue Mosher said:
The message body is the only place where the user can paste a screen shot. You can use simple code like this to delete any signature on new messages:

Function Item_Open()
If Item.Size = 0 Then
Item.Body = ""
End If
End Function

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54
 
I tried using the code you provided below but it hasn't removed the
signature. Is there any particular way I should be implementing the code?

Thanks,
Eric
 
Back
Top