String Constants

Color Constants,Comparison Constants,Date and Time Constants,Date Format Constants,Locale ID (LCID) Chart,Miscellaneous Constants,MsgBox Constants,String Constants,Tristate Constants,VarType Constants,VBScript Constants Home home | Other Resources other resources | Advertise with us advertise | Link to us link to us | Contact us contact | Bookmark Us!
Google
 
Where can I find good Windows Web Hosting to host my VBScript Site?
You can find good Windows Hosting which support VBScript, ASP, ASP.Net,VisualStudio.Net and MSSQL at a very reasonable low monthly fee at EasyCGI.com and DiscountASP.Net

String Constants

Since these constants are built into VBScript, you don't have to define them before using them. Use them anywhere in your code to represent the values shown for each.

ConstantValueDescription
vbCrChr(13)Carriage return.
VbCrLfChr(13) & Chr(10)Carriage return–linefeed combination.
vbFormFeedChr(12)Form feed; not useful in Microsoft Windows.
vbLfChr(10)Line feed.
vbNewLineChr(13) & Chr(10) or Chr(10)Platform-specific newline character; whatever is appropriate for the platform.
vbNullCharChr(0)Character having the value 0.
vbNullStringString having value 0Not the same as a zero-length string ("); used for calling external procedures.
vbTabChr(9)Horizontal tab.
vbVerticalTabChr(11)Vertical tab; not useful in Microsoft Windows.

VBScriptOnline.com - Color Constants,Comparison Constants,Date and Time Constants,Date Format Constants,Locale ID (LCID) Chart,Miscellaneous Constants,MsgBox Constants,String Constants,Tristate Constants,VarType Constants,VBScript Constants