Print Multiple Attachments

  • Thread starter Thread starter Mike
  • Start date Start date
M

Mike

I am wondering if there is a way to one by one select each
email in a specific folder, and print the attachment on
each one.

I have to print up to 200 attachments a day and would like
to save some time.

This is in Outlook 2002.

Any help would be great!
 
The problem is that Outlook doesn't handle the printing of the attachments - the default application for the file type is responsible. You'd have to save each attachment to the file system and use some kind of Print action (probably programmatically executing the Print command on the context menu for a file) on the full path of the file with the ShellExecute function from the Win32API (or the Shell function in VBA).

Also, you cannot programmatically select e-mails (the Selection property is read-only), but you can iterate through all e-mails in a given folder via the Folder.Items collection.
 
Back
Top