removing all white spaces from scrolling text box My guestbook doesn't work correctly when I copy text from text processor into scrolling text box because of special characters that text processor leave. How do I remove all white spaces from scrolling text box and place new ones in there places.
you can always use this strText=request("text") strText = replace(strText, vbCrLfvbCrLf, vbCrLf) it replaces 2 enters with one, is that what you needed?