How to create second line of Contact address in Outlook 2003?

  • Thread starter Thread starter Jeff
  • Start date Start date
J

Jeff

I'm exporting contact address information from my product to Outlook
2003 using the Outlook COM API via C#. I need to make the address
multiline in Outlook. Here's what doesn't work:

"address1" + System.Environment.NewLine + "address2"
"address1" + "\r\n" + "address2"
"address1" + '\r' + "address2"
"address1" + '\n' + "address2"

In Outlook, the address appears as:

"address1"

Any ideas?
 
Use the separate fields that are part of the address and populate them
individually.
 
Back
Top