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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top