ActiveX

[ Delphi ] – Send an e-mail through Outlook

uses
  ComObj;

procedure TForm1.Button16Click(Sender: TObject);

const
  olMailItem = 0;
  olByValue = 1;

var
  OutlookApp, MailItem, MyAttachments: OLEVariant;
 More >

 

Very PoorPoorRegularGoodVery Good ( Rate this post ! )
Loading ... Loading ...

[ Delphi ] – Register a OCX File

uses
  OLECtl;

var
  OCXHandle: THandle;
  RegFunc: TDllRegisterServer;
 More >

 

Very PoorPoorRegularGoodVery Good ( Rate this post ! )
Loading ... Loading ...

[ Delphi ] – Control mIRC with DDE

uses
  DdeMan;

procedure mIRCDDE(Service, Topic, Cmd: string);

var
  DDE: TDDEClientConv;

begin
  try
    DDE := TDDEClientConv.Create(nil);
 More >

 

Very PoorPoorRegularGoodVery Good ( Rate this post ! )
Loading ... Loading ...