 |
BorlandTalk.com Borland discussion newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
MikeInSwansea Guest
|
Posted: Tue Sep 21, 2004 2:39 pm Post subject: What is the correct syntax for 'Attachments' when calling ou |
|
|
The following code works except for the 'Attachments' line.
Any ideas what the correct format for attaching a file is?
The code is needed for CBuilder++ Version 6
#include "outlook_2k.h"
void __fastcall TFWMain::Button1Click(TObject *Sender)
{
Variant Outlook;
Variant MailItem;
Outlook = Variant::CreateObject("Outlook.Application");
MailItem = Outlook.OleFunction("CreateItem", olMailItem);
MailItem.OlePropertySet"TO",
VariantWideString"emailaddress (AT) orange (DOT) net"))) ;
MailItem.OlePropertySet("Subject" ,
Variant(WideString("Test Subject ")));
MailItem.OlePropertySet("Body" ,
Variant(WideString("Please find attached your documents")));
MailItem.OlePropertySet("Attachments",
Variant(WideString(""JOB.XML"),
Variant(WideString(""Alternate name for JOB.XML"));
MailItem.OleProcedure("Display");
}
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|