MaliciousMike
Registered User.
- Local time
- Today, 17:42
- Joined
- May 24, 2006
- Messages
- 118
Hello,
I have some code which creates an email and inputs data from a form.
One of the text boxes has carriage returns in it like below:
When it gets put in the email it displays as:
I really need to keep the vbCrLf.
I've tried the below and spent ages on google groups before posting this, but no luck!
Help!
Thanks.
~Mike
I have some code which creates an email and inputs data from a form.
One of the text boxes has carriage returns in it like below:
Code:
"Hello World
World Hello"
When it gets put in the email it displays as:
Code:
"Hello World World Hello"
I really need to keep the vbCrLf.
I've tried the below and spent ages on google groups before posting this, but no luck!
Code:
myNotes = Replace(txtNotes, vbCrLf, Chr(10))
Help!
Thanks.
~Mike