I trying to add sentences on a new line to the end of text in a richtextbox
Like this:
with rtb
.selstart = len(.text)
.seltext = vbcrlf & "some new text"
end select
This works okay if there is no vbcrlf already in the text i am adding to.
If the text i am adding to has a vbcrlf at the end a blank line is added
before my new text.
How can i find if there is a vbcrlf and how to delete it ?
.