Hello,
I*ve recogniced that the following property of
TOpContactItem is missing. The Body is the Memo-
Field of outlook that is presented on the main Edit page.
--------SNIP-----
unit OpOutlk;
TOpContactItem = class(TOpOutlookItem)
.
.
property BillingInformation: string read
GetBillingInformation write SetBillingInformation;
property Body: string read GetBody write
SetBody; // Josef Fuchs
property Categories: string read GetCategories write
SetCategories;
.
end;
function TOpContactItem.GetBody: string;
begin
RESULT := FContactItem.Body
end;
procedure TOpContactItem.SetBody(const Value:
string);
begin
FContactItem.Body := Value;
end;
--------SNIP-----
Example:
MyOutlookContact.Body := MyMemoField.Text;
I'm sure you can add this lines
Sample