Attaching a screenshot

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
 
S

Sue Mosher [MVP-Outlook]

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
 
E

Eric

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
 
E

Eric

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top