|
-
May 16th, 2000, 11:47 PM
#1
Thread Starter
New Member
How can you save attachments (text files) to a file from e-mails just as simple text files, i'm using Microsoft Outlook '97.
-
May 20th, 2000, 03:44 AM
#2
Fanatic Member
set out = createobject("outlook.application")
Set myItem = out.ActiveInspector.CurrentItem
myItem.attachments.item(1).saveasfile PathName
This will save the first attachment from the active open message to the PathName. You can also access items in unopen messages, but that takes a lot longer.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|