Results 1 to 3 of 3

Thread: Can I manipulate MAPI msgText

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Sep 1999
    Posts
    154
    I simply want to do a line feed so that my message text looks better . Example:

    msgText = "Dear John, How are you"

    When I use the above code, the message text displays this way in the Email -

    Dear John How are you.

    I want it to display this way -
    Dear John,
    How are you.

    ***********
    Microsoft says something about using (0x0d0a) but I can't seem to get it to work. (see Below)

    Microsofts Explanation:
    For inbound messages, each paragraph is terminated with a carriage return-line feed pair (0x0d0a). For outbound messages, paragraphs can be delimited with a carriage return (0x0d), line feed (0x0a), or a carriage return-line feed pair (0x0d0a). The value of MsgNoteText depends on the currently indexed message, as selected by the MsgIndex property.
    **************


  2. #2
    Lively Member
    Join Date
    Jan 2000
    Location
    Omaha, Ne
    Posts
    65

    Cool How about...

    msgText = "Dear John," & vbCrLf & "How are you?"



  3. #3

    Thread Starter
    Addicted Member
    Join Date
    Sep 1999
    Posts
    154

    Thanks

    Thanks so much. Works Great!!!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width