...be sure to also set the "Parent Account Name" as in following C# code:
if (newContact1.UserProperties["Parent Account Name"] == null)
{
userProp = newContact1.UserProperties.Add("Parent Account Name", Microsoft.Office.Interop.Outlook.OlUserPropertyType.olText,
false, false);
userProp.Value = newAccount.FirstName;
}
--
Visit team blog at http://blogs.msdn.com/bcm
This posting is provided "AS IS" with no warranties, and confers no rights
"Mike" <m...@postmaster.co.uk> wrote in message news:%236OwjX1...@TK2MSFTNGP05.phx.gbl...
There is sample code for this on MSDN that works correctly. You can
find the sample code at http://msdn2.microsoft.com/en-us/library/aa431883.aspx.
This code does indeed link the record. The contact appears under the
account. However the account name is not displayed in the contact record. I
think you have to set the Account Name after linking the record but this
only seems to work intermittently.
"Balaji [MS]" <bbalasub...@gmail.com> wrote in message
news:1172282377.3...@p10g2000cwp.googlegroups.com...
"Mike" <m...@postmaster.co.uk> wrote in message
news:OMUnZFcW...@TK2MSFTNGP06.phx.gbl...