M
mounil
Hi all,
I wanted to know if its possible to open up a particular contact's
details and edit the details from within my application? if so, how? I am
able to open the custom Outlook Contact Dialog; but that only allows adding
a new contact using this....
begin
try
Outlook := CreateOleObject('Outlook.Application');
NameSpace := Outlook.GetNamespace('MAPI');
NameSpace.Logon;
ContactItem := Outlook.CreateItem(OlContactItem);
ContactItem.Display;
finally
Outlook := UnAssigned;
ContactItem := UnAssigned;
end;
TIA,
Mounil.
I wanted to know if its possible to open up a particular contact's
details and edit the details from within my application? if so, how? I am
able to open the custom Outlook Contact Dialog; but that only allows adding
a new contact using this....
begin
try
Outlook := CreateOleObject('Outlook.Application');
NameSpace := Outlook.GetNamespace('MAPI');
NameSpace.Logon;
ContactItem := Outlook.CreateItem(OlContactItem);
ContactItem.Display;
finally
Outlook := UnAssigned;
ContactItem := UnAssigned;
end;
TIA,
Mounil.