Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

print all attachments in outlook?

Status
Not open for further replies.

venkman

Programmer
Oct 9, 2001
467
US
I'm trying to write a subroutine which prints all the attachments of a mailitem. I'm thinking it would look something like this:

Public Sub PrintAttachments(mItm As MailItem)
Dim currAttach As Attachment

For Each currAttach In mItm.Attachments
'Print currAttach
Exit Sub
end sub

Where the "Print" procedure is some all purpose call Windows Print that you get when you right click a file. Any ideas what this is? Is there something out there that does this already?

Thanks,
Venkman
 
Still looking for an answer to this, if anyone has any ideas.

Thanks,
Venkman
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top