body text!!!

  • Thread starter Thread starter Ivan
  • Start date Start date
I

Ivan

Im using MAPI in VB 6.0 and Outlook to send some messages.
Can you please tell me how can I put more than one line of text in body of mail.

msmMessage.MsgNoteText="Here i wont large text,not just one line"


Thx.........
 
Try:

msg = "line 1" & VbCrLf
msg = msg & "line 2" & VbCrLf
msg = msg & "line 3"
' etc.
msmMessage.MsgNoteText = msg
 
Thank you..........works just write!

Mark S. said:
Try:

msg = "line 1" & VbCrLf
msg = msg & "line 2" & VbCrLf
msg = msg & "line 3"
' etc.
msmMessage.MsgNoteText = msg
 

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