Link to home
Start Free TrialLog in
Avatar of Fluoronator
Fluoronator

asked on

Can't get vbcrlf to work in Lotus Notes document

With your help, I have written a program to automatically send daily business updates to my colleagues via Lotus Notes mail.  I’m creating a Domino rich text document object, loading the information but I can’t get the vbcrlf to work. For example, if I send the message ( “Have a nice day,” & vbcrlf & “Joe Jones”) it appears as one line in the e-mail with a couple of symbols representing the cr and lf characters like this (Have a nice day,||Joe Jones).  How do I get a crlf to work in the body of the message?
Avatar of bob_online
bob_online

I don't know, but you might try vbNewLine instead -- it's supposed to be non-platform specific -- I don't know if that will make a difference here.
Avatar of Richie_Simonetti
Try with Chr$(10) or Chr$(10) + Chr$(13)
ASKER CERTIFIED SOLUTION
Avatar of aelatik
aelatik
Flag of Netherlands image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial