When you call print and display functions, you can use the following constants in your code in place of the actual values.
CrLf
vbCrLf
Chr(13) + Chr(10)
Carriage-return/linefeed character combination.
Cr
vbCr
Chr(13)
Carriage-return character.
Lf
vbLf
Chr(10)
Linefeed character.
NewLine
vbNewLine
Newline character.
NullChar
vbNullChar
Chr(0)
Character having value 0.
n/a
vbNullString
String having value 0
Not the same as a zero-length string (""); used for calling external procedures.
vbObjectError
-2147221504
Error number. User-defined error numbers should be greater than this value. For example:
Err.Raise(Number) = vbObjectError + 1000
Tab
vbTab
Chr(9)
Tab character.
Back
vbBack
Chr(8)
Backspace character.
FormFeed
vbFormFeed
Chr(12)
Not useful in Microsoft Windows.
VerticalTab
vbVerticalTab
Chr(11)
Quote
Chr(34)
Quotation mark character (" or ') used to enclose values.
Namespace: Microsoft.VisualBasic
Module: Constants
Assembly: Visual Basic Runtime Library (in Microsoft.VisualBasic.dll)