Microsoft Office Forums


Reply
Thread Tools Display Modes

Embedded images

 
 
Peter@mws-accounts.co.uk
Guest
Posts: n/a

 
      07-29-2004, 08:00 AM
I have received an email with an embedded animated gif.
Does anyone know how I can access the gif file?
 
Reply With Quote
 
 
 
 
neo [mvp outlook]
Guest
Posts: n/a

 
      07-29-2004, 09:31 AM
You would have to use a macro to save the animated gif. Here is a sample
macro. (You have to open [not preview] the message in question.)

Sub SaveAttachment()
Dim objCurrentItem As Outlook.MailItem
Dim colAttachments As Outlook.Attachments
Dim objAttachment As Outlook.Attachment

Set objCurrentItem = Application.ActiveInspector.CurrentItem
Set colAttachments = objCurrentItem.Attachments

For Each objAttachment In colAttachments
objAttachment.SaveAsFile ("C:\" & objAttachment.FileName)
Next

Set objAttachment = Nothing
Set colAttachments = Nothing
objCurrentItem.Close (olDiscard)
Set objCurrentItem = Nothing

End Sub

"(E-Mail Removed)" <(E-Mail Removed)> wrote in
message news:635b01c47542$29135280$(E-Mail Removed)...
> I have received an email with an embedded animated gif.
> Does anyone know how I can access the gif file?



 
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Embedded Images Lee Vance Infopath Newsgroup 0 12-31-2007 01:51 PM
How to save ppt with linked images as a ppt with embedded images jdwinx PowerPoint Newsgroup 4 10-11-2007 03:36 AM
Embedded images not visable Blanche PowerPoint Newsgroup 1 07-19-2006 10:45 PM
Replacing embedded images... or switching embedded to linked... Tom PowerPoint Newsgroup 3 07-27-2004 04:06 PM
embedded images Daskarzine Outlook Newsgroup 1 08-18-2003 10:36 AM



All times are GMT. The time now is 02:19 PM.