Hallo! Ich importiere mit folgendem Quellcode Kontakte aus Outlook:
Delphi-Quellcode:
procedure TDeskBar_mac.Kontakteholen;
const
olFolderContacts = $0000000A;
var
outlook, NameSpace: OleVariant;
begin
try
outlook := CreateOleObject('
Outlook.Application');
NameSpace := outlook.GetNameSpace('
MAPI');
Contacts := NameSpace.GetDefaultFolder(olFolderContacts);
Outlook := UnAssigned;
except
ShowMessage('
Beim importieren ist ein Fehler aufgetreten.');
end;
end;
Jetzt bearbeite ich die Variable Contacts (OLEVariant). Kann ich dann diese Änderungen auch in Outlook übernehmen? Bzw. wie mache ich das?
Danke!