Visual Basic has built-in constants for newlines:
vbCr = Chr$(13) = CR (carriage-return character) – used by Mac OS and Apple II family
vbLf = Chr$(10) = LF (line-feed character) – used by Linux and Mac OS X
vbCrLf = Chr$(13) & Chr$(10) = CRLF (carriage-return followed by line-feed) – used by Windows
vbNewLine = the same as vbCrLf