Link to home
Create AccountLog in
Microsoft Development

Microsoft Development

--

Questions

--

Followers

Top Experts

Avatar of dchell
dchell

CDO using Borland C++ Builder 5
I'm trying to write a simple routine to send emails using CDO and Borland C++ Builder 5 on a Win2k machine.

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(cdoURLProxyServer);
fld->set_Value(TVariantInParam("Server:8080"));
fld->Release();

instead of :

Flds->get_Item(cdoURLProxyServer)->set_Value(TVariantInParam("Server:8080"));
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.dll" no_namespace
#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(Configuration));
    FieldsPtr         Flds;
    Flds         =    iConf->Fields;
    Flds->Item[cdoSendUsingMethod]->Value       =
          _variant_t(cdoSendUsingPort);
    Flds->Item[cdoSMTPServerName]->Value        =
          _variant_t("somehost@microsoft.com");
    Flds->Item[cdoSMTPConnectionTimeout]->Value = _variant_t((long)10);
    Flds->Item[cdoSMTPAuthenticate]->Value      = _variant_t(cdoBasic);
    Flds->Item[cdoSendUserName]->Value          = _variant_t("username");
    Flds->Item[cdoSendPassword]->Value          = _variant_t("password");
    Flds->Item[cdoURLProxyServer]->Value        = _variant_t("server:80");
    Flds->Item[cdoURLProxyBypass]->Value        = _variant_t("<local>");
    Flds->Item[cdoURLGetLatestVersion]->Value   =
          _variant_t(VARIANT_TRUE);
    Flds->Update();

    iMsg->To        = "\"SomeOne\" <someone@fake.microsoft.com>";
    iMsg->From      = "\"Another\" <another@fake.microsoft.com>";
    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(filepath,"","");
    }
    catch (_com_error e)
    {
      //...
    }

    /*
    ** Attach Word 2000 file to message
    */
    try {
      filepath  = _bstr_t(path) + _bstr_t("\\wordfile.doc");
      iMsg->AddAttachment(filepath,"","");
    }
    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("message.eml"),adSaveCreateOverWrite);

  }
  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(cdoSendUsingMethod);
      fld->set_Value(TVariantInParam((short)cdoSendUsingPort));
      fld->Release();
      fld = Flds->get_Item(cdoSMTPServer);
      fld->set_Value(TVariantInParam("192.168.0.1"));
      fld->Release();
      fld = Flds->get_Item(cdoSMTPServerPort);
      fld->set_Value(TVariantInParam((long)25));
      fld->Release();
      fld = Flds->get_Item(cdoSMTPConnectionTimeout);
      fld->set_Value(TVariantInParam((long)10));
      fld->Release();
      Flds->get_Item(cdoSMTPAuthenticate)->set_Value(TVariantInParam(cdoBasic));
//      fld->Release();
      fld = Flds->get_Item(cdoSendUserName);
      fld->set_Value(TVariantInParam("softlif2"));
      fld->Release();
      fld = Flds->get_Item(cdoSendPassword);
      fld->set_Value(TVariantInParam("j3raboam"));
      fld->Release();
      Flds->get_Item(cdoURLProxyServer)->set_Value(TVariantInParam("Stan:3128"));
//      fld->Release();
      Flds->get_Item(cdoURLProxyBypass)->set_Value(TVariantInParam("<local>"));
//      fld->Release();
      Flds->get_Item(cdoURLGetLatestVersion)->set_Value(TVariantInParam(VARIANT_TRUE));
//      fld->Release();
//      Flds->Update();
      Flds->Release();

      iMsg->set_Configuration(iConf);
      wchar_t from[] = L"\"Someone\" <someone@somewhere.co.nz>";
      iMsg->set_To(from);
      iMsg->set_From(L"\"Another\" <someone@somewhere.co.nz>");
      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\\message.eml",adSaveCreateOverWrite);
      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.


Avatar of DanRollinsDanRollins🇺🇸

You might be able to avoid compiler errors in listing #1 by using this technique:

Compile once.  The #import will generate a .H files like,

    d:\myproj\test\debug\cdosys.tlh
and
    d:\myproj\test\debug\msado15.tlh
   
At that point, comment out the #import lines and add these lines:

#include "d:\myproj\test\debug\cdosys.tlh"
#include "d:\myproj\test\debug\msado15.tlh"

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

Avatar of dchelldchell

ASKER

Thanks, That's solved the Internal Compiler error problems, now I  get:

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'

Avatar of dchelldchell

ASKER

Don't panic, I've fixed that one - the following line was missing two close brackets/

Reward 1Reward 2Reward 3Reward 4Reward 5Reward 6

EARN REWARDS FOR ASKING, ANSWERING, AND MORE.

Earn free swag for participating on the platform.


Avatar of DanRollinsDanRollins🇺🇸

Which line was that?  I have no problem compiling that file with VC++
-- Dan

Avatar of dchelldchell

ASKER

Now it compiles fine but I have the following 3 unresolved externals at link time:
__stdcall_com_issue_error(long)
_com_dispatch_method(IDispatch *, long, unsigned short, unsigned short, void *, const wchar_t *, ...)
_stdcall_com_util::ConvertStringToBSTR(const char *)

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.


Avatar of DanRollinsDanRollins🇺🇸

According to the MSDN article:
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

Free T-shirt

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.


Avatar of dchelldchell

ASKER

I didn't have a comsupp.lib, so I hunted around and found one - but BCB doesn't like the format of it. I get a linker error: COMSUPP.LIB contains and invalid OMF record, type 0x21 (possible COFF).

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.

Avatar of DanRollinsDanRollins🇺🇸

If you can get the comsupp.dll, you can use the borland tools to generate a .LIB file for it.

-- Dan

Avatar of dchelldchell

ASKER

Yep, I'd thought of that too, but it's not an import library - it's part of the VC static runtime library.

Reward 1Reward 2Reward 3Reward 4Reward 5Reward 6

EARN REWARDS FOR ASKING, ANSWERING, AND MORE.

Earn free swag for participating on the platform.


ASKER CERTIFIED SOLUTION
Avatar of DanRollinsDanRollins🇺🇸

Link to home
membership
Log in or create a free account to see answer.
Signing up is free and takes 30 seconds. No credit card required.
Create Account

Avatar of dchelldchell

ASKER

Well I started off using MAPI and Extended MAPI but I have a problem with the MAPI Spooler hanging - see https://www.experts-exchange.com/questions/20513569/MAPI-Spooler-hangs-while-submitting-email-using-Extended-MAPI.html

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

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.