This is why I use the RichTextBoxPrintControl. Basically the problem is that RTB uses Chr(10) to mark line breaks instead of vbCrLf. You can correct this using string.Replace but remember that you first need to replace all Chr(10) with vbCrLf and then go back through again to erase any double Chr(13) that might create.




Reply With Quote