| . | ![]() |
|
|
Using OLE Servers in Delphi 2.0 Introduction When Borland released Delphi 2.0, they addressed one of the long-standing complaints about v1.0: the inability to use OLE Servers. And address it they did! The OLE Server interface in Delphi 2.0 is intuitive and robust. Overview public idsMail: Variant;
idsMail := CreateOLEObject('IDSMailInterface.Server');
idsMail.ObjectKey := 'ABC123';
idsMail.AddRecipientTo ('Jim Smith');
idsMail.AddRecipientCc ('Mary Brown, Doug Williams');
idsMail.Subject := 'Meeting Agenda';
idsMail.AddAttachment ('C:\MEETINGS\AGENDA.DOC');
idsMail.Message = 'Here is the agenda for this weeks meeting.';
idsMail.Send;
|
© 1993-2004, AssurX, Inc. All Rights Reserved. Trademarks. 408-778-1376 | email: info@intuitive-data.com |
|