BorlandTalk.com Forum Index BorlandTalk.com
Borland discussion newsgroups
 
Archives   FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

What is the correct syntax for 'Attachments' when calling ou

 
Post new topic   Reply to topic    BorlandTalk.com Forum Index -> C++ Builder (ActiveX)
View previous topic :: View next topic  
Author Message
MikeInSwanse
Guest





PostPosted: Tue Sep 21, 2004 2:38 pm    Post subject: What is the correct syntax for 'Attachments' when calling ou Reply with quote




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(""SIGNMENT.XML"),Variant(WideString(""SIGNMENT.XML"));

MailItem.OleProcedure("Display");
}

Back to top
BigStew
Guest





PostPosted: Tue Sep 21, 2004 9:49 pm    Post subject: Re: What is the correct syntax for 'Attachments' when callin Reply with quote



Firstly, please cut/paste code more carefully.
Your code won't actually compile.
A MailItem has an Attachments collection, so you need to add an item as
follows;

Variant Outlook;
Variant MailItem;
Variant Attachments;
AnsiString aFileName = "c:\Signment.xml";

Outlook = Variant::CreateObject("Outlook.Application");
MailItem = Outlook.OleFunction("CreateItem", olMailItem);
MailItem.OlePropertySet("TO", WideString("emailaddress (AT) orange (DOT) net"));
MailItem.OlePropertySet("Subject", WideString("Test Subject "));
MailItem.OlePropertySet("Body", WideString("Please find attached your
documents"));
if (FileExists(aFileName))
{
Attachments = MailItem.OlePropertyGet("Attachments");
Attachments.OleFunction("Add", WideString(aFileName));
}
MailItem.OleProcedure("Display");

Stew

"MikeInSwanse" <michael.radford (AT) ntlworld (DOT) com> wrote

Quote:

The following code works except for the 'Attachments' line.

Any ideas what the correct format for attaching a file is?



Back to top
MikeInSwansea
Guest





PostPosted: Wed Sep 22, 2004 7:10 am    Post subject: Re: What is the correct syntax for 'Attachments' when callin Reply with quote




Excellent - It worked superbly.

Thanks for that and sorry about the cut-paste I tried to tidy it up and knackered it up!

One other request is where do I track down all the different options as to what I can do with Outlook?



Back to top
BigStew
Guest





PostPosted: Wed Sep 22, 2004 7:29 am    Post subject: Re: What is the correct syntax for 'Attachments' when callin Reply with quote

msdn is your best bet.

Stew

"MikeInSwansea" <michael.radford (AT) ntlworld (DOT) com> wrote

Quote:
One other request is where do I track down all the different options as to
what I can do with Outlook?




Back to top
Display posts from previous:   
Post new topic   Reply to topic    BorlandTalk.com Forum Index -> C++ Builder (ActiveX) All times are GMT
Page 1 of 1

 
Jump to:  
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


Powered by phpBB © 2001, 2006 phpBB Group
SEO toolkit © 2004-2006 webmedic.