I am creating a text editor so a client can enter text and post to a database, to use later in emails. Problem is, when he cuts and pastes his text, the wrapping is off. I have the following but it's not doing any good:
body = Replace(body, vbCrLf, "<BR>"
If there is no physical hard return, it's not including the <BR> and the line goes on forever. Any way I can force a <BR>? Like after a character count include a <BR>? Any thoughts would be appreciated.
body = Replace(body, vbCrLf, "<BR>"
If there is no physical hard return, it's not including the <BR> and the line goes on forever. Any way I can force a <BR>? Like after a character count include a <BR>? Any thoughts would be appreciated.