Microsoft Development
--
Questions
--
Followers
Top Experts
The MSDN Example listed below (listing1) doesn't work with BCB. It sometimes gets and internal compiler error and finds duplicate declarations. The BCB help says that using the #import is not a recommended method and that I should use the "Import type library" menu option instead. I tried that approach also and what I have now is listing 2:
It compiles and runs Ok, but nothing is sent or received. If I use :
fld = Flds->get_Item(cdoURLProxy
fld->set_Value(TVariantInP
fld->Release();
instead of :
Flds->get_Item(cdoURLProxy
fld->Release();
then I get and AV on the fld->set_Value line.
There's to be no Flds->Update() method.
and the Stm->SaveToFile(... line also causes and AV.
Any help would be appreciated.
Listing 1: MSDN Example;
========================
#import "d:\program files\common files\system\ado\msado15.d
#import <cdosys.dll> no_namespace
#include <iostream.h>
void main()
{
CoInitialize();
{
IMessagePtr iMsg(__uuidof(Message));
IBodyPartPtr iBp;
IBodyPartsPtr iBps;
_StreamPtr Stm;
_bstr_t filepath;
IConfigurationPtr iConf(__uuidof(Configurati
FieldsPtr Flds;
Flds = iConf->Fields;
Flds->Item[cdoSendUsingMet
_variant_t(cdoSendUsingPor
Flds->Item[cdoSMTPServerNa
_variant_t("somehost@micro
Flds->Item[cdoSMTPConnecti
Flds->Item[cdoSMTPAuthenti
Flds->Item[cdoSendUserName
Flds->Item[cdoSendPassword
Flds->Item[cdoURLProxyServ
Flds->Item[cdoURLProxyBypa
Flds->Item[cdoURLGetLatest
_variant_t(VARIANT_TRUE);
Flds->Update();
iMsg->To = "\"SomeOne\" <someone@fake.microsoft.co
iMsg->From = "\"Another\" <another@fake.microsoft.co
iMsg->Subject = "Here is a subject for the message.";
/*
** attach an html file to message
** your local path goes in the "path"
** variable below
*/
try
{
filepath = _bstr_t(path) + _bstr_t("\\htmlfile.html")
iMsg->AddAttachment(filepa
}
catch (_com_error e)
{
//...
}
/*
** Attach Word 2000 file to message
*/
try {
filepath = _bstr_t(path) + _bstr_t("\\wordfile.doc");
iMsg->AddAttachment(filepa
}
catch (_com_error e)
{
//...
}
/*
** Create MTHML body.
*/
try
{
iMsg->CreateMHTMLBody(
"http://mypage",
cdoSuppressAll,
"",
"");
}
catch (_com_error e)
{
//...
}
iMsg->Send();
// save message
Stm = iMsg->GetStream();
Stm->SaveToFile(_bstr_t("m
}
CoUninitialize();
}
Listing 2:
============
#pragma hdrstop
#include <cdo_tlb.h>
#include <cdosysstr.h>
#include "cdosys_i.c"
extern "C" int TestMessage()
{
TCOMIMessage iMsg;
TCOMIConfiguration iConf;
IBodyPart *iBp;
IBodyParts *iBps;
_Stream *Stm;
int rcode;
HRESULT hr;
TInitOle tInit;
/*
** Create an instance of the Message and configuration COM class.
*/
iMsg = CoMessage::Create();
iConf = CoConfiguration::Create();
Fields *Flds;
Flds = iConf->get_Fields();
Field *fld;
fld = Flds->get_Item(cdoSendUsin
fld->set_Value(TVariantInP
fld->Release();
fld = Flds->get_Item(cdoSMTPServ
fld->set_Value(TVariantInP
fld->Release();
fld = Flds->get_Item(cdoSMTPServ
fld->set_Value(TVariantInP
fld->Release();
fld = Flds->get_Item(cdoSMTPConn
fld->set_Value(TVariantInP
fld->Release();
Flds->get_Item(cdoSMTPAuth
// fld->Release();
fld = Flds->get_Item(cdoSendUser
fld->set_Value(TVariantInP
fld->Release();
fld = Flds->get_Item(cdoSendPass
fld->set_Value(TVariantInP
fld->Release();
Flds->get_Item(cdoURLProxy
// fld->Release();
Flds->get_Item(cdoURLProxy
// fld->Release();
Flds->get_Item(cdoURLGetLa
// fld->Release();
// Flds->Update();
Flds->Release();
iMsg->set_Configuration(iC
wchar_t from[] = L"\"Someone\" <someone@somewhere.co.nz>"
iMsg->set_To(from);
iMsg->set_From(L"\"Another
iMsg->set_Subject(L"Here is a subject for the message.");
/*
** attach an html file to message
** your local path goes in the "path"
** variable below
*/
if (iMsg->Send() != S_OK)
rcode = R_ERROR;
// save message
Stm = iMsg->GetStream();
Stm->SaveToFile(L"e:\\temp
Stm->Release();
iMsg->Release();
iConf->Release();
return(rcode);
Zero AI Policy
We believe in human intelligence. Our moderation policy strictly prohibits the use of LLM content in our Q&A threads.
Compile once. The #import will generate a .H files like,
d:\myproj\test\debug\cdosy
and
d:\myproj\test\debug\msado
At that point, comment out the #import lines and add these lines:
#include "d:\myproj\test\debug\cdos
#include "d:\myproj\test\debug\msad
But you should also check into the files that you are #import-ing. DO a full-disk search for msado15.dll and cdosys.dll and make sure that you are importing the right files. You must import the same dll that will be loaded when you instantiate the object and if there are two or more copies of the a DLL then that becomes a bit iffy.
-- Dan
MSADO15.LH(844) Unrecognized __declspec modifier
MSADO15.TLH(844) Declaration does not specifiy a tag or an identifier
MSADO15.TLH(840) 'GetRow' is not a member of 'ADORecordConstruction'






EARN REWARDS FOR ASKING, ANSWERING, AND MORE.
Earn free swag for participating on the platform.
-- Dan
__stdcall_com_issue_error(
_com_dispatch_method(IDisp
_stdcall_com_util::Convert
MSDN says that _com_dispatch_method is an undocumented runtime library function. It's obviously not in BCB's runtime library - I've searched all files on my disk for _com_dispatch_method - nothing.
PRB: Use IDispatch for Objects Created by a DataSpace Object
it should be easy to create a replacement for that function. I don't have the code.
Do you have a file named COMSUPP.LIB ? that seems to provide the code for a number of these utility fns.
-- Dan

Get a FREE t-shirt when you ask your first question.
We believe in human intelligence. Our moderation policy strictly prohibits the use of LLM content in our Q&A threads.
The problem is that there's 111 calls to _com_dispatch_method in the automatically generated cdosys.tli file and then there's _stdcall_com_issue_error and ConvertStringToBSTR to replace.
-- Dan






EARN REWARDS FOR ASKING, ANSWERING, AND MORE.
Earn free swag for participating on the platform.
In my travels through MSDN I spotted CDO as a possibility and thought I'd give it a try.
I do have another option - and that is to install Visual Studio (I have it on CD) and compile just the CDO module with that - but I'm a bit short of disk space (need to clean out some games). It's not a favoured option as it makes debugging somewhat tiresome. I've also left a message on the Borland newsgroups and am waiting for a response.
Microsoft Development
--
Questions
--
Followers
Top Experts
Most development for the Microsoft platform is done utilizing the technologies supported by the.NET framework. Other development is done using Visual Basic for Applications (VBA) for programs like Access, Excel, Word and Outlook, with PowerShell for scripting, or with SQL for large databases.