Registriert seit: 14. Mär 2003
Ort: Osnabrück
244 Beiträge
Delphi 2009 Professional
|
Re: Outlook Aufgaben exportieren
2. Mär 2006, 15:44
Hi jo ich kann dir helfen
Hier ist mal Beispiel Code der dir alle Subjects ausgibt... sollte er zumindest wenn ich nix vergessen hab
Delphi-Quellcode:
uses Variants;
procedure ShowAllAfgs;
var
Journals : OleVariant;
ItemColl : OleVariant;
aJournal : OleVariant;
OutlookApplication : OleVariant;
iCnt : Integer;
begin
OutlookApplication := CreateOleObject(' Outlook.Application');
DefNameSpace := OutlookApplication.GetNamespace(' MAPI');
Journals := DefNameSpace.GetDefaultFolder(olFolderTasks);
ItemColl := Journals.Items;
for iCnt := 1 to ItemColl.Count do
begin
aJournal := ItemColl.Item(iCnt);
ShowMessage(aJournal.Subject);
end;
end;
Wenn noch fragen sind...
PS: Schöner gehts natürlich per MAPI hat aber auch seine Nachteile!
Greetz
Boombuler
"Look at you, Hacker. A pathetic creature of meat and bone, panting and sweating as you run through my corridors. How can you challenge a perfect, immortal machine?"
SwapIt Highscore:
|