Deleting a row in a message (opposite to VbCrLf)
Maybe you need to show your code, but perhaps something like this:
Dim strMsg as string
strMsg = "message" & vbcrlf & "with linebreak"
strMsg = Replace(strMsg, vbcrlf, vbnullstring)
Msgbox strMsg
RBS
"Wesslan" wrote in message
...
Hi,
I am interested in deleting a blank row in a message. I know that if I
want to add a row I use the command VbCrLf, but is there one to delete
a row?
Any help/suggestions greatly appreciated.
Regards
Peder
|