Find below the list of miscellaneous visual basic (VB) constants that can be used in place of the actual values when calling print and display functions. These VB constants do not belong to any specific enumeration.
Constant |
Equivalent |
Description |
vbCrLf |
Chr(13) + Chr(10) |
Carriage return-linefeed combination |
vbCr |
Chr(13) |
Carriage return character |
vbLf |
Chr(10) |
Linefeed character |
vbNewLine |
Chr(13) + Chr(10) or Chr(13) in Macintosh |
Platform-specific new line character;
whichever is appropriate for current platform |
vbNullChar |
Chr(0) |
Character having value 0 |
vbNullString |
String having value 0 |
Not the same as a zero-length string
(""); used for calling external procedures |
vbObjectError |
-2147221504 |
User-defined error numbers should be
greater than this value. For example: |
vbTab |
Chr(9) |
Tab character |
vbBack |
Chr(8) |
Backspace character |
vbFormFeed |
Chr(12) |
Not useful in Microsoft Windows or on
the Macintosh |
vbVerticalTab |
Chr(11) |
Not useful in Microsoft Windows or on
the Macintosh |
No comments:
Post a Comment