![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
![]()
I am using FoxPro7 to create a mailer using Outlook 2000. I wish to add a .
jpg as an inline attachment, which I have not been able to do. I am able to creat the message with the .jpg as normal attachment. Can someone give me the Foxpro statement to add a .jpg as an inline attachment? Mohan -- Message posted via OfficeKB.com http://www.officekb.com/Uwe/Forums.a...g-vba/200709/1 |
#2
|
|||
|
|||
![]()
You won't find many or any FoxPro programmers here but just use the
olByReference argument when you add the attachment and not olByValue. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm "bnmohan via OfficeKB.com" u35859@uwe wrote in message news:77cf505ff1185@uwe... I am using FoxPro7 to create a mailer using Outlook 2000. I wish to add a . jpg as an inline attachment, which I have not been able to do. I am able to creat the message with the .jpg as normal attachment. Can someone give me the Foxpro statement to add a .jpg as an inline attachment? Mohan -- Message posted via OfficeKB.com http://www.officekb.com/Uwe/Forums.a...g-vba/200709/1 |
#3
|
|||
|
|||
![]()
oooooooo
olByValue (=1)attaches the normal attachment olByReference (=4) attaches a Shortcut OlEmdeddedItem (=5) attaches a shortcut olOLE (=6) attaches a shortcut. My statement is - lonewmsg.Attachments.Add("d:\prdpl\order\greetings 2.jpg",5, 1) I wonder where I could find a Foxpro7 forum...? Mohan Ken Slovak - [MVP - Outlook] wrote: You won't find many or any FoxPro programmers here but just use the olByReference argument when you add the attachment and not olByValue. I am using FoxPro7 to create a mailer using Outlook 2000. I wish to add a . jpg as an inline attachment, which I have not been able to do. I am able [quoted text clipped - 4 lines] Mohan -- Message posted via http://www.officekb.com |
#4
|
|||
|
|||
![]()
How the image is displayed depends on the message format and the version of
Outlook you're using. You're correct that my previous post did not produce the results you wanted. You might want to look at a code example of showing an embedded image in an email that's in VBA code, at http://www.outlookcode.com/d/code/htmlimg.htm. That might be helpful for you. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm "bnmohan via OfficeKB.com" u35859@uwe wrote in message news:77da98559ec24@uwe... oooooooo olByValue (=1)attaches the normal attachment olByReference (=4) attaches a Shortcut OlEmdeddedItem (=5) attaches a shortcut olOLE (=6) attaches a shortcut. My statement is - lonewmsg.Attachments.Add("d:\prdpl\order\greetings 2.jpg",5, 1) I wonder where I could find a Foxpro7 forum...? Mohan |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
How do I view attachments inline? | Shadowydreamer | Outlook - Installation | 0 | September 6th 07 06:40 AM |
Attachments disappear in Outlook 2003 under Vista display as inline encoded | [email protected] | Outlook - General Queries | 0 | May 31st 07 08:30 PM |
View Attachments INline | Buford T. Justice | Outlook - General Queries | 3 | March 19th 07 11:55 AM |
View Attachments INline | Buford T. Justice | Add-ins for Outlook | 2 | March 19th 07 11:55 AM |
Outlook putting Word attachments inline as garbage | KenW | Outlook - Installation | 0 | June 22nd 06 02:02 AM |