Registriert seit: 3. Mai 2003
140 Beiträge
Delphi 2006 Enterprise
|
Re: Tastatureingabe in MSOutlook von delphi simulieren
31. Okt 2003, 18:06
vielleicht hilft Dir das weiter:
Delphi-Quellcode:
const
// Wert für EMails in Outlook
OL_MAIL_ITEM = $00000000;
var
OutlApp, Msg: Variant;
begin
try
OutlApp := CreateOleObject('Outlook.Application');
Msg := OutlApp.CreateItem(OL_MAIL_ITEM);
Msg.To := 'hans@aol.com';
Msg.Subject := 'Betreff';
Msg.Body := 'BlaBla';
Msg.Display(False);
// Msg.Send;
finally
Msg := Unassigned;
OutlApp := Unassigned;
end;
mr2
|