The carriage return + linefeed pair — Chr(13) & Chr(10).
vbFormFeed
The form feed character — Chr(12).
vbLf
The linefeed character — Chr(10).
vbNewLine
The platform-appropriate newline character. In twinBASIC, identical to vbCrLf.
vbNullChar
The null character — Chr(0).
vbNullPtr
A null pointer of type LongPtr (zero), for use with API declarations that take a pointer or handle argument.
vbNullString
A null string pointer. Distinct from the zero-length string ""; used when calling external procedures that differentiate between a null pointer and an empty string.
vbObjectError
The base value for user-defined error numbers — &H80040000 (-2147221504). User-defined error numbers should be greater than this; for example, Err.Raise vbObjectError + 1000.
vbTab
The tab character — Chr(9).
vbVerticalTab
The vertical tab character — Chr(11).
Enumerations
VbAppWinStyle – window style values for the Shell function