Sideway BICK BlogSideway BICK BLOG from Sideway

A Sideway to Sideway Home

Link:http://output.to/sideway/default.asp?qno=180300030

Script, Scripting Language, VBScript elements, Server-Side VBScript Function CBool, CByte, CCur, CDate, CDbl, CSng, CLng, CInt, CStr Function

VBScript Data Type Convertion Functions

Functions for manipulating data type of expression.

CDate Function

last updated 9/16/2017

Create a Date data subtype value from a given expression.

Syntax

CDate(date)

Argument

dateRequired. Any valid date expression that is used for the evaluation of the CDate result.

Returns

Returns a Variant of Date data subtype obtained by converting the data type of a given expression to Date data subtype.

Returns of function:

expressionreturn valueBoolean False12:00:00 AMvalid date expression.TypeName(CDate(expression))=DateBoolean True12/29/1899

Special returns of function:

expressionreturn valueNullRun-time ErrorEmpty12:00:00 AM""Run-time Error

Remarks

  • CDate function convert a given expression to a Variant of Date data subtype by evaluate the CDate result of the given expression.
  • CDate function returns Run-time error for any invalid given expression.
  • The valid range of date return by CDate function is between January 1, 100 12:00:00 AM and December 31, 9999 11:59:59 PM inclusive.The preset zero-date is also #12/30/1899 12:00:00 AM#.
  • A Boolean expression contains True result is converted to a Date containing 12/29/1899.
  • A Boolean expression contains False result is converted to a Date containing 12:00:00 AM.
  • CDate function returns 12:00:00 AM if a given expression contains Empty. However, CDate function returns Run-time error if a given expression contains zero-length string, "".
  • Besides date literals and time literals, CDate function also recognizes dates formats.The conversion of CDate function uses local system settings to determine the format of conversion, such as decimal separators, or thousand separators when necessary.
  • In general, CDate function using the same date and time recognization method.
  • A date with day of week will also cause CDate function to return Run-time error. However, numeric expression of date argument is considered as number of day with respect to the zero-date. The whole number portion is converted to a date by adding the number of day to date part of zero-date accordingly. Any fractional part of the numeric expression is converted to a time of day by adding the fractional time of day to the time part of zero-date accordingly.

Requirement

1

CBool Function

last updated 9/16/2017

Create a Boolean result value of a given expression.

Syntax

CBool(expression)

Argument

expressionRequired. Any valid expression that is used for the evaluation of the Boolean result.

Returns

Returns a Variant of Boolean data subtype containing the Boolean result of a given expression.

Returns of function:

expressionreturn valuevalid express, True, numeric expression <>0Trueinvalid express, False, Empty, numeric expression =0Falseinvalid String expression, except True, False, and numericRun-time Error

Special returns of function:

expressionreturn valueNullRun-time ErrorEmptyFalse""Run-time Error

Remarks

  • Cbool function convert a given expression to a Variant of Boolean data subtype by evaluate the Boolean result of the given expression.
  • Cbool function returns True for a valid result of the given expression.
  • Cbool function returns False for an invalid result of the given expression.
  • Cbool function returns Run-time error for any invalid given expression.
  • A String contains "true" is equal to a Boolean contain True result.
  • A String contains "false" is equal to a Boolean contain False result.
  • Cbool function returns a False Boolean result if a given expression contains Empty. However, Cbool function returns Run-time error if a given expression contains zero-length string, "".
  • In general if an expression cannot be interpreted as a numeric value, except the key words True and False, CBool function returns Run-time erroc.
  • For any numeric expression, CBool function returns False result only for the given expression equals to zero, but for the given expression not equals to zero, CBool function returns False result.

Requirement

1

CByte Function

last updated 9/16/2017

Create a Byte data subtype value from a given expression.

Syntax

CByte(expression)

Argument

expressionRequired. Any valid expression that is used for the evaluation of the Byte result.

Returns

Returns a Variant of Byte data subtype obtained by converting the data type of a given expression to Byte data subtype.

Returns of function:

expressionreturn valueBoolean False0valid numeric expression.between 0 and 255 inclusiveBoolean True255

Special returns of function:

expressionreturn valueNullRun-time ErrorEmpty0""Run-time Error

Remarks

  • Cbyte function convert a given expression to a Variant of Byte data subtype by evaluate the Byte result of the given expression.
  • Cbyte function returns number between 0 and 255 for a valid result of the given expression.
  • Cbyte function returns Run-time error for any invalid given expression.
  • A Boolean expression contains True result is converted to a Byte containing 255.
  • A Boolean expression contains False result is converted to a Byte containing 0.
  • CByte function returns 0 if a given expression contains Empty. However, CByte function returns Run-time error if a given expression contains zero-length string, "".
  • In general, if an expression cannot be interpreted as a boolean value or a numeric value between 0 and 255 inclusive, CByte function returns Run-time erroc.
  • The conversion of CByte function forces other data type arithmetic, such as currency, single-precision, double-precision, or integer arithmetic to byte type arithmetic only.
  • The conversion of CByte function uses local system settings to determine the format of conversion, such as decimal separators, or thousand separators when necessary.

Requirement

1

CCur Function

last updated 9/16/2017

Create a Currency data subtype value from a given expression.

Syntax

CCur(expression)

Argument

expressionRequired. Any valid expression that is used for the evaluation of the Ccur result.

Returns

Returns a Variant of Currency data subtype obtained by converting the data type of a given expression to Currency data subtype.

Returns of function:

expressionreturn valueBoolean False0valid numeric expression.TypeName(CCur(expression))=CurrencyBoolean True-1

Special returns of function:

expressionreturn valueNullRun-time ErrorEmpty0""Run-time Error

Remarks

  • CCur function convert a given expression to a Variant of Currency data subtype by evaluate the CCur result of the given expression.
  • CCur function returns Run-time error for any invalid given expression.
  • A Boolean expression contains True result is converted to a Currency containing -1.
  • A Boolean expression contains False result is converted to a Currency containing 0.
  • CCur function returns 0 if a given expression contains Empty. However, CCur function returns Run-time error if a given expression contains zero-length string, "".
  • In general, if an expression cannot be interpreted as a boolean value or a numeric value, CCur function returns Run-time erroc.
  • The conversion of CCur function forces other data type arithmetic, such as byte, single-precision, double-precision, or integer arithmetic to currency type arithmetic only.
  • The conversion of CCur function uses local system settings to determine the format of conversion, such as decimal separators, or thousand separators when necessary.

Requirement

1

CDbl Function

last updated 9/16/2017

Create a Double data subtype value from a given expression.

Syntax

CDbl(expression)

Argument

dateRequired. Any valid numeric expression that is used for the evaluation of the CDbl result.

Returns

Returns a Variant of Double data subtype obtained by converting the data type of a given expression to Double data subtype.

Returns of function:

expressionreturn valueBoolean False0valid numeric expression.TypeName(CDbl(expression))=DoubleBoolean True-1

Special returns of function:

expressionreturn valueNullRun-time ErrorEmpty0""Run-time Error

Remarks

  • CDbl function convert a given expression to a Variant of Double data subtype by evaluate the CDbl result of the given expression.
  • CDbl function returns Run-time error for any invalid given expression.
  • A Boolean expression contains True result is converted to a Double containing -1.
  • A Boolean expression contains False result is converted to a Double containing 0.
  • CDbl function returns 0 if a given expression contains Empty. However, CDbl function returns Run-time error if a given expression contains zero-length string, "".
  • The conversion of CDbl function forces other data type arithmetic, such as byte, single-precision, currency, or integer arithmetic to double-precision type arithmetic only.
  • The conversion of CDbl function uses local system settings to determine the format of conversion, such as decimal separators, or thousand separators when necessary.

Requirement

1

CSng Function

last updated 9/17/2017

Create a Single data subtype value from a given expression.

Syntax

CSng(expression)

Argument

expressionRequired. Any valid numeric expression that is used for the evaluation of the CSng result.

Returns

Returns a Variant of Single data subtype obtained by converting the data type of a given expression to Single data subtype.

Returns of function:

expressionreturn valueBoolean False0valid numeric expression.TypeName(CSng(expression))=SingleBoolean True-1

Special returns of function:

expressionreturn valueNullRun-time ErrorEmpty0""Run-time Error

Remarks

  • CSng function convert a given expression to a Variant of Single data subtype by evaluate the CSng result of the given expression.
  • CSng function returns Run-time error for any invalid given expression.
  • A Boolean expression contains True result is converted to a Single containing -1.
  • A Boolean expression contains False result is converted to a Single containing 0.
  • CSng function returns 0 if a given expression contains Empty. However, CSng function returns Run-time error if a given expression contains zero-length string, "".
  • The conversion of CSng function forces other data type arithmetic, such as byte, Double-precision, currency, or integer arithmetic to Single-precision type arithmetic only.
  • The conversion of CSng function uses local system settings to determine the format of conversion, such as decimal separators, or thousand separators when necessary.

Requirement

1

CLng Function

last updated 9/17/2017

Create a Long data subtype value from a given expression.

Syntax

CLng(expression)

Argument

expressionRequired. Any valid numeric expression that is used for the evaluation of the CLng result.

Returns

Returns a Variant of Long data subtype obtained by converting the data type of a given expression to Long data subtype.

Returns of function:

expressionreturn valueBoolean False0valid numeric expression.TypeName(CLng(expression))=LongBoolean True-1

Special returns of function:

expressionreturn valueNullRun-time ErrorEmpty0""Run-time Error

Remarks

  • CLng function convert a given expression to a Variant of Long data subtype by evaluate the CLng result of the given expression.
  • CLng function returns Run-time error for any invalid given expression.
  • The return value of CLng function is alway rounded to an integer.
  • A Boolean expression contains True result is converted to a Long containing -1.
  • A Boolean expression contains False result is converted to a Long containing 0.
  • CLng function returns 0 if a given expression contains Empty. However, CLng function returns Run-time error if a given expression contains zero-length string, "".
  • The conversion of CLng function forces other data type arithmetic, such as byte, Single-precision, Double-precision, currency, or integer arithmetic to Long type arithmetic only.
  • The conversion of CLng function uses local system settings to determine the format of conversion, such as decimal separators, or thousand separators when necessary.

Requirement

1

CInt Function

last updated 9/17/2017

Create an Integer data subtype value from a given expression.

Syntax

CInt(expression)

Argument

expressionRequired. Any valid numeric expression that is used for the evaluation of the CInt result.

Returns

Returns a Variant of Integer data subtype obtained by converting the data type of a given expression to Integer data subtype.

Returns of function:

expressionreturn valueBoolean False0valid numeric expression.TypeName(CInt(expression))=IntegerBoolean True-1

Special returns of function:

expressionreturn valueNullRun-time ErrorEmpty0""Run-time Error

Remarks

  • CInt function convert a given expression to a Variant of Integer data subtype by evaluate the CInt result of the given expression.
  • CInt function returns Run-time error for any invalid given expression.
  • The return value of CInt function is always rounded to an integer.
  • A Boolean expression contains True result is converted to a Integer containing -1.
  • A Boolean expression contains False result is converted to a Integer containing 0.
  • CInt function returns 0 if a given expression contains Empty. However, CInt function returns Run-time error if a given expression contains zero-length string, "".
  • The conversion of CInt function forces other data type arithmetic, such as byte, Single-precision, Double-precision, currency, or Long arithmetic to Integer type arithmetic only.
  • The conversion of CInt function uses local system settings to determine the format of conversion, such as decimal separators, or thousand separators when necessary.

Requirement

1

CStr Function

last updated 9/17/2017

Create a String data subtype value from a given expression.

Syntax

CStr(expression)

Argument

expressionRequired. Any valid expression.

Returns

Returns a Variant of String data subtype obtained by converting the data type of a given expression to String data subtype.

Returns of function:

expressionreturn valueBoolean FalseFalsevalid expression.TypeName(CStr(expression))=StringBoolean TrueTrue

Special returns of function:

expressionreturn valueNullRun-time ErrorEmpty""""""

Remarks

  • CStr function convert a given expression to a Variant of String data subtype by evaluate the CStr result of the given expression.
  • CStr function returns Run-time error for any invalid given expression.
  • A Boolean expression contains True result is converted to a String containing True.
  • A Boolean expression contains False result is converted to a String containing Fasle.
  • CStr function returns a zero-length string "", if a given expression contains Empty or zero-length string, "".
  • The conversion of CStr function uses local system settings to determine the format of conversion, such as decimal separators, or thousand separators when necessary.

Requirement

1

Examples

Examples of CDate, CBool, CByte, CCur, CDbl, CSng, CLng, CInt, CStr functions

ASP VbScript Command:
<script runat="server" language="VBScript">
Dim vars,strs,cmda
cmda=array("strs","CDate(strs)","CBool(strs)","CByte(strs)","CCur(strs)","CDbl(strs)","CSng(strs)","CLng(strs)","CInt(strs)","CStr(strs)")
Dim ucnt,tmp,i:ucnt=UBound(cmda):If var=1 Then:tmp="":Else:tmp="<b>vars</b>":End If:For i=0 to ucnt:tmp=tmp&"<b>"&rmv_ctrl(cmda(i))&", TypeName</b>":Next:Response.Write "Results on Microsoft Windows 8.1 Pro x64, Microsoft-IIS/8.5, VBScript Version 5.8 of page /internet/users/sideblog/default.asp<br />"&"<i>"&tmp&"</i>"
Function dsp_x:Dim tmp_a,tmp_b,i:If varx=0  Then:Execute vars:End If:If var=1 Then:tmp_a="":Else:tmp_a=rmv_ctrl(vars):End If:For i=0 to ucnt:tmp_b=cmd_b(cmda(i)):if i/2=fix(i/2) Then:tmp_b="<b>"&tmp_b&"</b>":End If:tmp_a=tmp_a&tmp_b:Next:Response.Write "<i>"&tmp_a&"</i>":End Function
Function rmv_ctrl(blk_str):Select Case blk_str:Case chr(0):blk_str="NUL":Case chr(1):blk_str="SOH":Case chr(2):blk_str="STX":Case chr(3):blk_str="ETX":Case chr(4):blk_str="EOT":Case chr(5):blk_str="ENQ":Case chr(6):blk_str="ACK":Case chr(7):blk_str="BEL":Case chr(8):blk_str="BS":Case chr(9):blk_str="HT":Case chr(10):blk_str="LF":Case chr(11):blk_str="VT":Case chr(12):blk_str="FF":Case chr(13):blk_str="CR":Case chr(14):blk_str="SO":Case chr(15):blk_str="SI":Case chr(16):blk_str="DLE":Case chr(17):blk_str="DC1":Case chr(18):blk_str="DC2":Case chr(19):blk_str="DC3":Case chr(20):blk_str="DC4":Case chr(21):blk_str="NAK":Case chr(22):blk_str="SYN":Case chr(23):blk_str="ETB":Case chr(24):blk_str="CAN":Case chr(25):blk_str="EM":Case chr(26):blk_str="SUB":Case chr(27):blk_str="ESC":Case chr(28):blk_str="FS":Case chr(29):blk_str="GS":Case chr(30):blk_str="RS":Case chr(31):blk_str="US":Case chr(127):blk_str="DEL":End Select:rmv_ctrl=blk_str:If IsNull(blk_str) OR IsEmpty(Blk_str) OR blk_str="" OR IsNumeric(Blk_str) Then:Else:rmv_ctrl=Replace(Replace(Replace(Replace(Replace(blk_str,"&","&amp;"),"  "," &nbsp;"),"""","&quot;"),"<","&lt;"),">","&gt;"): End If :End Function
Function cmd_b(blk_str):cmd_b="["&cmd_x(blk_str)&"], "&cmd_x("TypeName("&blk_str&")"):End Function
Function cmd_x(blk_str):On Error Resume Next:Dim xans, tmp:xans="":tmp="":execute "xans="&blk_str:If Err.Number <> 0  Then:xans=cmd_x("TypeName("&blk_str&")"):Select Case xans:Case 9::Case Else:xans="error":End Select:End If:If IsArray(xans)=False Then:cmd_x=rmv_ctrl(xans): Else:tmp=lst_arry(xans):cmd_x=trim(tmp):End If:End Function
Function lst_arry(blk_str):Dim tmp,i,q:q="""":tmp="":For i=0 to UBound(blk_str):if VarType(blk_str(i))>1 And VarType(blk_str(i))<6 Then:q="'":End If:tmp=tmp&" "&q&rmv_ctrl(blk_str(i))&q:Next:lst_arry=trim(tmp):End Function

vars="Set strs = CreateObject(""vbscript.regexp"")":dsp_x
vars="Set strs = ObjectContext":dsp_x
vars="strs=Null":dsp_x
vars="strs=Empty":dsp_x
vars="strs=""""":dsp_x
vars="strs=Null & Null":dsp_x
vars="strs=Null & Empty":dsp_x
vars="strs=Null & True":dsp_x
vars="strs=Null & (1=1)":dsp_x
vars="strs=Null & False":dsp_x
vars="strs=Empty & Empty":dsp_x
vars="strs=Empty & True":dsp_x
vars="strs=Empty & False":dsp_x
vars="strs=Empty & 4":dsp_x
vars="strs=Null & 4":dsp_x
vars="strs=Null Or Null":dsp_x
vars="strs=Null Or Empty":dsp_x
vars="strs=Null Or True":dsp_x
vars="strs=Null Or (1=1)":dsp_x
vars="strs=Null Or False":dsp_x
vars="strs=Empty Or Empty":dsp_x
vars="strs=Empty Or True":dsp_x
vars="strs=Empty Or False":dsp_x
vars="strs=Empty+Null":dsp_x
vars="strs=Empty+Empty":dsp_x
vars="strs=Empty+4":dsp_x
vars="strs=Null+Null":dsp_x
vars="strs=Null+4":dsp_x
vars="tmp=Null:strs=tmp=Null":dsp_x
vars="tmp=Null:strs=tmp<>Null":dsp_x
vars="tmp=Empty:strs=tmp=Null":dsp_x
vars="tmp=Empty:strs=tmp<>Null":dsp_x
vars="strs=(tmp=Null)":dsp_x
vars="strs=(tmp<>Null)":dsp_x
vars="tmp_arry=Array(1,2):strs=tmp_arry":dsp_x
vars="tmp_arry=Split(""1 2""):strs=tmp_arry":dsp_x
vars="strs=Array(1,2)":dsp_x
vars="strs=""Array(1,2)""":dsp_x
vars="strs=Split(""1 2"")":dsp_x
vars="strs=""Split(""""1 2"""")""":dsp_x
vars="strs=Now":dsp_x
vars="strs=Date":dsp_x
vars="strs=Time":dsp_x
vars="strs=""1.3.3""":dsp_x
vars="strs=""1.3.3 AM""":dsp_x
vars="strs=""1.3.3 PM""":dsp_x
vars="strs=""21.3.3""":dsp_x
vars="strs=#1:3:3#":dsp_x
vars="strs=#1.3.3#":dsp_x
vars="strs=""1,3,3""":dsp_x
vars="strs=""1,Apr,3""":dsp_x
vars="strs=""51,Apr,3""":dsp_x
vars="strs=""1,April,3""":dsp_x
vars="strs=""11.3.3 1,3,3""":dsp_x
vars="strs=""1,Apr,3 1.3.3""":dsp_x
vars="strs=""11.3.3 51,Apr,3""":dsp_x
vars="strs=""1,April,3 11.3.3""":dsp_x
vars="strs=#1/3/3#":dsp_x
vars="strs=#1,3,3#":dsp_x
vars="strs=#1-3-3#":dsp_x
vars="strs=#1 3 3#":dsp_x
vars="strs=CBool(1)":dsp_x
vars="strs=CBool(0)":dsp_x
vars="strs=True":dsp_x
vars="strs=true":dsp_x
vars="strs=False":dsp_x
vars="strs=false":dsp_x
vars="strs=""True""":dsp_x
vars="strs=""true""":dsp_x
vars="strs=""False""":dsp_x
vars="strs=""false""":dsp_x
vars="strs=""1""":dsp_x
vars="strs=""0""":dsp_x
vars="strs=""254""":dsp_x
vars="strs=""254.4""":dsp_x
vars="strs=""254.5""":dsp_x
vars="strs=""254.6""":dsp_x
vars="strs=-1.79769313486231E308":dsp_x
vars="strs=-922337203685477.5809":dsp_x
vars="strs=-2147483649":dsp_x
vars="strs=-32769":dsp_x
vars="strs=-4.94065645841247E-324":dsp_x
vars="strs=4.94065645841247E-324":dsp_x
vars="strs=32768":dsp_x
vars="strs=2147483648":dsp_x
vars="strs=922337203685477.5808":dsp_x
vars="strs=1.79769313486231E308":dsp_x
vars="strs=Yes":dsp_x
vars="strs=No":dsp_x
vars="strs=1":dsp_x
vars="strs=1.1":dsp_x
vars="strs=2.1":dsp_x
vars="strs=0":dsp_x
vars="strs=-0":dsp_x
vars="strs=-0.39":dsp_x
vars="strs=-0.399":dsp_x
vars="strs=-0.4":dsp_x
vars="strs=-0.401":dsp_x
vars="strs=-0.5":dsp_x
vars="strs=-0.45":dsp_x
vars="strs=-4":dsp_x
vars="strs=4":dsp_x
vars="strs=4.4":dsp_x
vars="strs=5.5":dsp_x
vars="strs=4.6":dsp_x
vars="strs=0.4":dsp_x
vars="strs=0.5":dsp_x
vars="strs=0.6":dsp_x
vars="strs=254":dsp_x
vars="strs=254.4":dsp_x
vars="strs=254.5":dsp_x
vars="strs=254.6":dsp_x
vars="strs=255":dsp_x
vars="strs=CByte(255)":dsp_x
vars="strs=255.4":dsp_x
vars="strs=256":dsp_x
vars="strs=32255.4":dsp_x
vars="strs=1E4":dsp_x
vars="strs=5/6":dsp_x
vars="strs=6/6":dsp_x
vars="strs=0/6":dsp_x
vars="strs=6-6":dsp_x
vars="strs=5=6":dsp_x
vars="strs=6=6":dsp_x
vars="strs=5>6":dsp_x
vars="strs=5<6":dsp_x
vars="strs=5.5-3.5":dsp_x
vars="strs=5.5+3.5":dsp_x
vars="strs=100.5-55.9":dsp_x
vars="strs=100.5+55.9":dsp_x
vars="strs=CCur(51235/6)":dsp_x
vars="strs=CDbl(51235/6)":dsp_x
vars="strs=CSng(51235/6)":dsp_x
vars="strs=CLng(51235/6)":dsp_x
vars="strs=CInt(51235/6)":dsp_x
vars="strs=CStr(51235/6)":dsp_x
vars="strs=CByte(51/6)":dsp_x
vars="strs=CBool(51/6)":dsp_x
vars="strs=CCur(5.5)+CCur(3.5)":dsp_x
vars="strs=CCur(5.5)+CDbl(3.5)":dsp_x
vars="strs=CCur(5.5)+CSng(3.5)":dsp_x
vars="strs=CCur(5.5)+CLng(3.5)":dsp_x
vars="strs=CCur(5.5)+CInt(3.5)":dsp_x
vars="strs=CCur(5.5)+CByte(3.5)":dsp_x
vars="strs=CCur(5.5)+CBool(3.5)":dsp_x
vars="strs=CCur(5.5)+CStr(3.5)":dsp_x
vars="strs=CDbl(5.5)+CCur(3.5)":dsp_x
vars="strs=CDbl(5.5)+CDbl(3.5)":dsp_x
vars="strs=CDbl(5.5)+CSng(3.5)":dsp_x
vars="strs=CDbl(5.5)+CLng(3.5)":dsp_x
vars="strs=CDbl(5.5)+CInt(3.5)":dsp_x
vars="strs=CDbl(5.5)+CByte(3.5)":dsp_x
vars="strs=CDbl(5.5)+CBool(3.5)":dsp_x
vars="strs=CDbl(5.5)+CStr(3.5)":dsp_x
vars="strs=CSng(5.5)+CCur(3.5)":dsp_x
vars="strs=CSng(5.5)+CDbl(3.5)":dsp_x
vars="strs=CSng(5.5)+CSng(3.5)":dsp_x
vars="strs=CSng(5.5)+CLng(3.5)":dsp_x
vars="strs=CSng(5.5)+CInt(3.5)":dsp_x
vars="strs=CSng(5.5)+CByte(3.5)":dsp_x
vars="strs=CSng(5.5)+CBool(3.5)":dsp_x
vars="strs=CSng(5.5)+CStr(3.5)":dsp_x
vars="strs=CLng(5.5)+CCur(3.5)":dsp_x
vars="strs=CLng(5.5)+CDbl(3.5)":dsp_x
vars="strs=CLng(5.5)+CSng(3.5)":dsp_x
vars="strs=CLng(5.5)+CLng(3.5)":dsp_x
vars="strs=CLng(5.5)+CInt(3.5)":dsp_x
vars="strs=CLng(5.5)+CByte(3.5)":dsp_x
vars="strs=CLng(5.5)+CBool(3.5)":dsp_x
vars="strs=CLng(5.5)+CStr(3.5)":dsp_x
vars="strs=CInt(5.5)+CCur(3.5)":dsp_x
vars="strs=CInt(5.5)+CDbl(3.5)":dsp_x
vars="strs=CInt(5.5)+CSng(3.5)":dsp_x
vars="strs=CInt(5.5)+CLng(3.5)":dsp_x
vars="strs=CInt(5.5)+CInt(3.5)":dsp_x
vars="strs=CInt(5.5)+CByte(3.5)":dsp_x
vars="strs=CInt(5.5)+CBool(3.5)":dsp_x
vars="strs=CInt(5.5)+CStr(3.5)":dsp_x
vars="strs=CByte(5.5)+CCur(3.5)":dsp_x
vars="strs=CByte(5.5)+CDbl(3.5)":dsp_x
vars="strs=CByte(5.5)+CSng(3.5)":dsp_x
vars="strs=CByte(5.5)+CLng(3.5)":dsp_x
vars="strs=CByte(5.5)+CInt(3.5)":dsp_x
vars="strs=CByte(5.5)+CByte(3.5)":dsp_x
vars="strs=CByte(5.5)+CBool(3.5)":dsp_x
vars="strs=CByte(5.5)+CStr(3.5)":dsp_x
vars="strs=CBool(5.5)+CCur(3.5)":dsp_x
vars="strs=CBool(5.5)+CDbl(3.5)":dsp_x
vars="strs=CBool(5.5)+CSng(3.5)":dsp_x
vars="strs=CBool(5.5)+CLng(3.5)":dsp_x
vars="strs=CBool(5.5)+CInt(3.5)":dsp_x
vars="strs=CBool(5.5)+CByte(3.5)":dsp_x
vars="strs=CBool(5.5)+CBool(3.5)":dsp_x
vars="strs=CBool(5.5)+CStr(3.5)":dsp_x
vars="strs=CStr(5.5)+CCur(3.5)":dsp_x
vars="strs=CStr(5.5)+CDbl(3.5)":dsp_x
vars="strs=CStr(5.5)+CSng(3.5)":dsp_x
vars="strs=CStr(5.5)+CLng(3.5)":dsp_x
vars="strs=CStr(5.5)+CInt(3.5)":dsp_x
vars="strs=CStr(5.5)+CByte(3.5)":dsp_x
vars="strs=CStr(5.5)+CBool(3.5)":dsp_x
vars="strs=CStr(5.5)+3.5":dsp_x
</script>
HTML Web Page In-line Output:
Results on Microsoft Windows 8.1 Pro x64, Microsoft-IIS/8.5, VBScript Version 5.8 of page /internet/users/sideblog/default.asp
varsstrs, TypeNameCDate(strs), TypeNameCBool(strs), TypeNameCByte(strs), TypeNameCCur(strs), TypeNameCDbl(strs), TypeNameCSng(strs), TypeNameCLng(strs), TypeNameCInt(strs), TypeNameCStr(strs), TypeNameSet strs = CreateObject("vbscript.regexp")[IRegExp2], IRegExp2[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], errorSet strs = ObjectContext[IASPObjectContext], IASPObjectContext[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], errorstrs=Null[], Null[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], errorstrs=Empty[], Empty[12:00:00 AM], Date[False], Boolean[0], Byte[0], Currency[0], Double[0], Single[0], Long[0], Integer[], Stringstrs=""[], String[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], error[], Stringstrs=Null & Null[], Null[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], errorstrs=Null & Empty[], String[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], error[], Stringstrs=Null & True[True], String[error], error[True], Boolean[error], error[error], error[error], error[error], error[error], error[error], error[True], Stringstrs=Null & (1=1)[True], String[error], error[True], Boolean[error], error[error], error[error], error[error], error[error], error[error], error[True], Stringstrs=Null & False[False], String[error], error[False], Boolean[error], error[error], error[error], error[error], error[error], error[error], error[False], Stringstrs=Empty & Empty[], String[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], error[], Stringstrs=Empty & True[True], String[error], error[True], Boolean[error], error[error], error[error], error[error], error[error], error[error], error[True], Stringstrs=Empty & False[False], String[error], error[False], Boolean[error], error[error], error[error], error[error], error[error], error[error], error[False], Stringstrs=Empty & 4[4], String[1/3/1900], Date[True], Boolean[4], Byte[4], Currency[4], Double[4], Single[4], Long[4], Integer[4], Stringstrs=Null & 4[4], String[1/3/1900], Date[True], Boolean[4], Byte[4], Currency[4], Double[4], Single[4], Long[4], Integer[4], Stringstrs=Null Or Null[], Null[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], errorstrs=Null Or Empty[], Null[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], errorstrs=Null Or True[True], Boolean[12/29/1899], Date[True], Boolean[255], Byte[-1], Currency[-1], Double[-1], Single[-1], Long[-1], Integer[True], Stringstrs=Null Or (1=1)[True], Boolean[12/29/1899], Date[True], Boolean[255], Byte[-1], Currency[-1], Double[-1], Single[-1], Long[-1], Integer[True], Stringstrs=Null Or False[], Null[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], errorstrs=Empty Or Empty[0], Long[12:00:00 AM], Date[False], Boolean[0], Byte[0], Currency[0], Double[0], Single[0], Long[0], Integer[0], Stringstrs=Empty Or True[-1], Long[12/29/1899], Date[True], Boolean[error], error[-1], Currency[-1], Double[-1], Single[-1], Long[-1], Integer[-1], Stringstrs=Empty Or False[0], Long[12:00:00 AM], Date[False], Boolean[0], Byte[0], Currency[0], Double[0], Single[0], Long[0], Integer[0], Stringstrs=Empty+Null[], Null[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], errorstrs=Empty+Empty[0], Integer[12:00:00 AM], Date[False], Boolean[0], Byte[0], Currency[0], Double[0], Single[0], Long[0], Integer[0], Stringstrs=Empty+4[4], Integer[1/3/1900], Date[True], Boolean[4], Byte[4], Currency[4], Double[4], Single[4], Long[4], Integer[4], Stringstrs=Null+Null[], Null[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], errorstrs=Null+4[], Null[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], errortmp=Null:strs=tmp=Null[], Null[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], errortmp=Null:strs=tmp<>Null[], Null[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], errortmp=Empty:strs=tmp=Null[], Null[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], errortmp=Empty:strs=tmp<>Null[], Null[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], errorstrs=(tmp=Null)[], Null[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], errorstrs=(tmp<>Null)[], Null[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], errortmp_arry=Array(1,2):strs=tmp_arry['1' '2'], Variant()[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], errortmp_arry=Split("1 2"):strs=tmp_arry["1" "2"], Variant()[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], errorstrs=Array(1,2)['1' '2'], Variant()[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], errorstrs="Array(1,2)"[Array(1,2)], String[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], error[Array(1,2)], Stringstrs=Split("1 2")["1" "2"], Variant()[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], errorstrs="Split(""1 2"")"[Split("1 2")], String[error], error[error], error[error], error[error], error[error], error[error], error[error], error[error], error[Split("1 2")], Stringstrs=Now[3/27/2019 9:27:15 AM], Date[3/27/2019 9:27:15 AM], Date[True], Boolean[error], error[43551.3939], Currency[43551.3939236111], Double[43551.39], Single[43551], Long[error], error[3/27/2019 9:27:15 AM], Stringstrs=Date[3/27/2019], Date[3/27/2019], Date[True], Boolean[error], error[43551], Currency[43551], Double[43551], Single[43551], Long[error], error[3/27/2019], Stringstrs=Time[9:27:15 AM], Date[9:27:15 AM], Date[True], Boolean[0], Byte[0.3939], Currency[0.393923611111111], Double[0.3939236], Single[0], Long[0], Integer[9:27:15 AM], Stringstrs="1.3.3"[1.3.3], String[1:03:03 AM], Date[error], error[error], error[error], error[error], error[error], error[error], error[error], error[1.3.3], Stringstrs="1.3.3 AM"[1.3.3 AM], String[1:03:03 AM], Date[error], error[error], error[error], error[error], error[error], error[error], error[error], error[1.3.3 AM], Stringstrs="1.3.3 PM"[1.3.3 PM], String[1:03:03 PM], Date[error], error[error], error[error], error[error], error[error], error[error], error[error], error[1.3.3 PM], Stringstrs="21.3.3"[21.3.3], String[9:03:03 PM], Date[error], error[error], error[error], error[error], error[error], error[error], error[error], error[21.3.3], Stringstrs=#1:3:3#[1:03:03 AM], Date[1:03:03 AM], Date[True], Boolean[0], Byte[0.0438], Currency[4.37847222222222E-02], Double[4.378472E-02], Single[0], Long[0], Integer[1:03:03 AM], Stringstrs=#1.3.3#[1:03:03 AM], Date[1:03:03 AM], Date[True], Boolean[0], Byte[0.0438], Currency[4.37847222222222E-02], Double[4.378472E-02], Single[0], Long[0], Integer[1:03:03 AM], Stringstrs="1,3,3"[1,3,3], String[1/3/2003], Date[True], Boolean[133], Byte[133], Currency[133], Double[133], Single[133], Long[133], Integer[1,3,3], Stringstrs="1,Apr,3"[1,Apr,3], String[4/1/2003], Date[error], error[error], error[error], error[error], error[error], error[error], error[error], error[1,Apr,3], Stringstrs="51,Apr,3"[51,Apr,3], String[4/3/1951], Date[error], error[error], error[error], error[error], error[error], error[error], error[error], error[51,Apr,3], Stringstrs="1,April,3"[1,April,3], String[4/1/2003], Date[error], error[error], error[error], error[error], error[error], error[error], error[error], error[1,April,3], Stringstrs="11.3.3 1,3,3"[11.3.3 1,3,3], String[1/3/2003 11:03:03 AM], Date[error], error[error], error[error], error[error], error[error], error[error], error[error], error[11.3.3 1,3,3], Stringstrs="1,Apr,3 1.3.3"[1,Apr,3 1.3.3], String[4/1/2003 1:03:03 AM], Date[error], error[error], error[error], error[error], error[error], error[error], error[error], error[1,Apr,3 1.3.3], Stringstrs="11.3.3 51,Apr,3"[11.3.3 51,Apr,3], String[4/3/1951 11:03:03 AM], Date[error], error[error], error[error], error[error], error[error], error[error], error[error], error[11.3.3 51,Apr,3], Stringstrs="1,April,3 11.3.3"[1,April,3 11.3.3], String[4/1/2003 11:03:03 AM], Date[error], error[error], error[error], error[error], error[error], error[error], error[error], error[1,April,3 11.3.3], Stringstrs=#1/3/3#[1/3/2003], Date[1/3/2003], Date[True], Boolean[error], error[37624], Currency[37624], Double[37624], Single[37624], Long[error], error[1/3/2003], Stringstrs=#1,3,3#[1/3/2003], Date[1/3/2003], Date[True], Boolean[error], error[37624], Currency[37624], Double[37624], Single[37624], Long[error], error[1/3/2003], Stringstrs=#1-3-3#[1/3/2003], Date[1/3/2003], Date[True], Boolean[error], error[37624], Currency[37624], Double[37624], Single[37624], Long[error], error[1/3/2003], Stringstrs=#1 3 3#[1/3/2003], Date[1/3/2003], Date[True], Boolean[error], error[37624], Currency[37624], Double[37624], Single[37624], Long[error], error[1/3/2003], Stringstrs=CBool(1)[True], Boolean[12/29/1899], Date[True], Boolean[255], Byte[-1], Currency[-1], Double[-1], Single[-1], Long[-1], Integer[True], Stringstrs=CBool(0)[False], Boolean[12:00:00 AM], Date[False], Boolean[0], Byte[0], Currency[0], Double[0], Single[0], Long[0], Integer[False], Stringstrs=True[True], Boolean[12/29/1899], Date[True], Boolean[255], Byte[-1], Currency[-1], Double[-1], Single[-1], Long[-1], Integer[True], Stringstrs=true[True], Boolean[12/29/1899], Date[True], Boolean[255], Byte[-1], Currency[-1], Double[-1], Single[-1], Long[-1], Integer[True], Stringstrs=False[False], Boolean[12:00:00 AM], Date[False], Boolean[0], Byte[0], Currency[0], Double[0], Single[0], Long[0], Integer[False], Stringstrs=false[False], Boolean[12:00:00 AM], Date[False], Boolean[0], Byte[0], Currency[0], Double[0], Single[0], Long[0], Integer[False], Stringstrs="True"[True], String[error], error[True], Boolean[error], error[error], error[error], error[error], error[error], error[error], error[True], Stringstrs="true"[true], String[error], error[True], Boolean[error], error[error], error[error], error[error], error[error], error[error], error[true], Stringstrs="False"[False], String[error], error[False], Boolean[error], error[error], error[error], error[error], error[error], error[error], error[False], Stringstrs="false"[false], String[error], error[False], Boolean[error], error[error], error[error], error[error], error[error], error[error], error[false], Stringstrs="1"[1], String[12/31/1899], Date[True], Boolean[1], Byte[1], Currency[1], Double[1], Single[1], Long[1], Integer[1], Stringstrs="0"[0], String[12:00:00 AM], Date[False], Boolean[0], Byte[0], Currency[0], Double[0], Single[0], Long[0], Integer[0], Stringstrs="254"[254], String[9/10/1900], Date[True], Boolean[254], Byte[254], Currency[254], Double[254], Single[254], Long[254], Integer[254], Stringstrs="254.4"[254.4], String[9/10/1900 9:36:00 AM], Date[True], Boolean[254], Byte[254.4], Currency[254.4], Double[254.4], Single[254], Long[254], Integer[254.4], Stringstrs="254.5"[254.5], String[9/10/1900 12:00:00 PM], Date[True], Boolean[254], Byte[254.5], Currency[254.5], Double[254.5], Single[254], Long[254], Integer[254.5], Stringstrs="254.6"[254.6], String[9/10/1900 2:24:00 PM], Date[True], Boolean[255], Byte[254.6], Currency[254.6], Double[254.6], Single[255], Long[255], Integer[254.6], Stringstrs=-1.79769313486231E308[-1.79769313486231E+308], Double[error], error[True], Boolean[error], error[error], error[-1.79769313486231E+308], Double[error], error[error], error[error], error[-1.79769313486231E+308], Stringstrs=-922337203685477.5809[-922337203685478], Double[error], error[True], Boolean[error], error[error], error[-922337203685478], Double[-9.223372E+14], Single[error], error[error], error[-922337203685478], Stringstrs=-2147483649[-2147483649], Double[error], error[True], Boolean[error], error[-2147483649], Currency[-2147483649], Double[-2.147484E+09], Single[error], error[error], error[-2147483649], Stringstrs=-32769[-32769], Long[4/12/1810], Date[True], Boolean[error], error[-32769], Currency[-32769], Double[-32769], Single[-32769], Long[error], error[-32769], Stringstrs=-4.94065645841247E-324[-4.94065645841247E-324], Double[12:00:00 AM], Date[True], Boolean[0], Byte[0], Currency[-4.94065645841247E-324], Double[-0], Single[0], Long[0], Integer[-4.94065645841247E-324], Stringstrs=4.94065645841247E-324[4.94065645841247E-324], Double[12:00:00 AM], Date[True], Boolean[0], Byte[0], Currency[4.94065645841247E-324], Double[0], Single[0], Long[0], Integer[4.94065645841247E-324], Stringstrs=32768[32768], Long[9/17/1989], Date[True], Boolean[error], error[32768], Currency[32768], Double[32768], Single[32768], Long[error], error[32768], Stringstrs=2147483648[2147483648], Double[error], error[True], Boolean[error], error[2147483648], Currency[2147483648], Double[2.147484E+09], Single[error], error[error], error[2147483648], Stringstrs=922337203685477.5808[922337203685478], Double[error], error[True], Boolean[error], error[error], error[922337203685478], Double[9.223372E+14], Single[error], error[error], error[922337203685478], Stringstrs=1.79769313486231E308[1.79769313486231E+308], Double[error], error[True], Boolean[error], error[error], error[1.79769313486231E+308], Double[error], error[error], error[error], error[1.79769313486231E+308], Stringstrs=Yes[], Empty[12:00:00 AM], Date[False], Boolean[0], Byte[0], Currency[0], Double[0], Single[0], Long[0], Integer[], Stringstrs=No[], Empty[12:00:00 AM], Date[False], Boolean[0], Byte[0], Currency[0], Double[0], Single[0], Long[0], Integer[], Stringstrs=1[1], Integer[12/31/1899], Date[True], Boolean[1], Byte[1], Currency[1], Double[1], Single[1], Long[1], Integer[1], Stringstrs=1.1[1.1], Double[12/31/1899 2:24:00 AM], Date[True], Boolean[1], Byte[1.1], Currency[1.1], Double[1.1], Single[1], Long[1], Integer[1.1], Stringstrs=2.1[2.1], Double[1/1/1900 2:24:00 AM], Date[True], Boolean[2], Byte[2.1], Currency[2.1], Double[2.1], Single[2], Long[2], Integer[2.1], Stringstrs=0[0], Integer[12:00:00 AM], Date[False], Boolean[0], Byte[0], Currency[0], Double[0], Single[0], Long[0], Integer[0], Stringstrs=-0[0], Integer[12:00:00 AM], Date[False], Boolean[0], Byte[0], Currency[0], Double[0], Single[0], Long[0], Integer[0], Stringstrs=-0.39[-0.39], Double[9:21:36 AM], Date[True], Boolean[0], Byte[-0.39], Currency[-0.39], Double[-0.39], Single[0], Long[0], Integer[-0.39], Stringstrs=-0.399[-0.399], Double[9:34:34 AM], Date[True], Boolean[0], Byte[-0.399], Currency[-0.399], Double[-0.399], Single[0], Long[0], Integer[-0.399], Stringstrs=-0.4[-0.4], Double[9:36:00 AM], Date[True], Boolean[0], Byte[-0.4], Currency[-0.4], Double[-0.4], Single[0], Long[0], Integer[-0.4], Stringstrs=-0.401[-0.401], Double[9:37:26 AM], Date[True], Boolean[0], Byte[-0.401], Currency[-0.401], Double[-0.401], Single[0], Long[0], Integer[-0.401], Stringstrs=-0.5[-0.5], Double[12:00:00 PM], Date[True], Boolean[0], Byte[-0.5], Currency[-0.5], Double[-0.5], Single[0], Long[0], Integer[-0.5], Stringstrs=-0.45[-0.45], Double[10:48:00 AM], Date[True], Boolean[0], Byte[-0.45], Currency[-0.45], Double[-0.45], Single[0], Long[0], Integer[-0.45], Stringstrs=-4[-4], Integer[12/26/1899], Date[True], Boolean[error], error[-4], Currency[-4], Double[-4], Single[-4], Long[-4], Integer[-4], Stringstrs=4[4], Integer[1/3/1900], Date[True], Boolean[4], Byte[4], Currency[4], Double[4], Single[4], Long[4], Integer[4], Stringstrs=4.4[4.4], Double[1/3/1900 9:36:00 AM], Date[True], Boolean[4], Byte[4.4], Currency[4.4], Double[4.4], Single[4], Long[4], Integer[4.4], Stringstrs=5.5[5.5], Double[1/4/1900 12:00:00 PM], Date[True], Boolean[6], Byte[5.5], Currency[5.5], Double[5.5], Single[6], Long[6], Integer[5.5], Stringstrs=4.6[4.6], Double[1/3/1900 2:24:00 PM], Date[True], Boolean[5], Byte[4.6], Currency[4.6], Double[4.6], Single[5], Long[5], Integer[4.6], Stringstrs=0.4[0.4], Double[9:36:00 AM], Date[True], Boolean[0], Byte[0.4], Currency[0.4], Double[0.4], Single[0], Long[0], Integer[0.4], Stringstrs=0.5[0.5], Double[12:00:00 PM], Date[True], Boolean[0], Byte[0.5], Currency[0.5], Double[0.5], Single[0], Long[0], Integer[0.5], Stringstrs=0.6[0.6], Double[2:24:00 PM], Date[True], Boolean[1], Byte[0.6], Currency[0.6], Double[0.6], Single[1], Long[1], Integer[0.6], Stringstrs=254[254], Integer[9/10/1900], Date[True], Boolean[254], Byte[254], Currency[254], Double[254], Single[254], Long[254], Integer[254], Stringstrs=254.4[254.4], Double[9/10/1900 9:36:00 AM], Date[True], Boolean[254], Byte[254.4], Currency[254.4], Double[254.4], Single[254], Long[254], Integer[254.4], Stringstrs=254.5[254.5], Double[9/10/1900 12:00:00 PM], Date[True], Boolean[254], Byte[254.5], Currency[254.5], Double[254.5], Single[254], Long[254], Integer[254.5], Stringstrs=254.6[254.6], Double[9/10/1900 2:24:00 PM], Date[True], Boolean[255], Byte[254.6], Currency[254.6], Double[254.6], Single[255], Long[255], Integer[254.6], Stringstrs=255[255], Integer[9/11/1900], Date[True], Boolean[255], Byte[255], Currency[255], Double[255], Single[255], Long[255], Integer[255], Stringstrs=CByte(255)[255], Byte[9/11/1900], Date[True], Boolean[255], Byte[255], Currency[255], Double[255], Single[255], Long[255], Integer[255], Stringstrs=255.4[255.4], Double[9/11/1900 9:36:00 AM], Date[True], Boolean[255], Byte[255.4], Currency[255.4], Double[255.4], Single[255], Long[255], Integer[255.4], Stringstrs=256[256], Integer[9/12/1900], Date[True], Boolean[error], error[256], Currency[256], Double[256], Single[256], Long[256], Integer[256], Stringstrs=32255.4[32255.4], Double[4/22/1988 9:36:00 AM], Date[True], Boolean[error], error[32255.4], Currency[32255.4], Double[32255.4], Single[32255], Long[32255], Integer[32255.4], Stringstrs=1E4[10000], Double[5/18/1927], Date[True], Boolean[error], error[10000], Currency[10000], Double[10000], Single[10000], Long[10000], Integer[10000], Stringstrs=5/6[0.833333333333333], Double[8:00:00 PM], Date[True], Boolean[1], Byte[0.8333], Currency[0.833333333333333], Double[0.8333333], Single[1], Long[1], Integer[0.833333333333333], Stringstrs=6/6[1], Double[12/31/1899], Date[True], Boolean[1], Byte[1], Currency[1], Double[1], Single[1], Long[1], Integer[1], Stringstrs=0/6[0], Double[12:00:00 AM], Date[False], Boolean[0], Byte[0], Currency[0], Double[0], Single[0], Long[0], Integer[0], Stringstrs=6-6[0], Integer[12:00:00 AM], Date[False], Boolean[0], Byte[0], Currency[0], Double[0], Single[0], Long[0], Integer[0], Stringstrs=5=6[False], Boolean[12:00:00 AM], Date[False], Boolean[0], Byte[0], Currency[0], Double[0], Single[0], Long[0], Integer[False], Stringstrs=6=6[True], Boolean[12/29/1899], Date[True], Boolean[255], Byte[-1], Currency[-1], Double[-1], Single[-1], Long[-1], Integer[True], Stringstrs=5>6[False], Boolean[12:00:00 AM], Date[False], Boolean[0], Byte[0], Currency[0], Double[0], Single[0], Long[0], Integer[False], Stringstrs=5<6[True], Boolean[12/29/1899], Date[True], Boolean[255], Byte[-1], Currency[-1], Double[-1], Single[-1], Long[-1], Integer[True], Stringstrs=5.5-3.5[2], Double[1/1/1900], Date[True], Boolean[2], Byte[2], Currency[2], Double[2], Single[2], Long[2], Integer[2], Stringstrs=5.5+3.5[9], Double[1/8/1900], Date[True], Boolean[9], Byte[9], Currency[9], Double[9], Single[9], Long[9], Integer[9], Stringstrs=100.5-55.9[44.6], Double[2/12/1900 2:24:00 PM], Date[True], Boolean[45], Byte[44.6], Currency[44.6], Double[44.6], Single[45], Long[45], Integer[44.6], Stringstrs=100.5+55.9[156.4], Double[6/4/1900 9:36:00 AM], Date[True], Boolean[156], Byte[156.4], Currency[156.4], Double[156.4], Single[156], Long[156], Integer[156.4], Stringstrs=CCur(51235/6)[8539.1667], Currency[5/18/1923 4:00:03 AM], Date[True], Boolean[error], error[8539.1667], Currency[8539.1667], Double[8539.167], Single[8539], Long[8539], Integer[8539.1667], Stringstrs=CDbl(51235/6)[8539.16666666667], Double[5/18/1923 4:00:00 AM], Date[True], Boolean[error], error[8539.1667], Currency[8539.16666666667], Double[8539.167], Single[8539], Long[8539], Integer[8539.16666666667], Stringstrs=CSng(51235/6)[8539.167], Single[5/18/1923 4:00:28 AM], Date[True], Boolean[error], error[8539.167], Currency[8539.1669921875], Double[8539.167], Single[8539], Long[8539], Integer[8539.167], Stringstrs=CLng(51235/6)[8539], Long[5/18/1923], Date[True], Boolean[error], error[8539], Currency[8539], Double[8539], Single[8539], Long[8539], Integer[8539], Stringstrs=CInt(51235/6)[8539], Integer[5/18/1923], Date[True], Boolean[error], error[8539], Currency[8539], Double[8539], Single[8539], Long[8539], Integer[8539], Stringstrs=CStr(51235/6)[8539.16666666667], String[5/18/1923 4:00:00 AM], Date[True], Boolean[error], error[8539.1667], Currency[8539.16666666667], Double[8539.167], Single[8539], Long[8539], Integer[8539.16666666667], Stringstrs=CByte(51/6)[8], Byte[1/7/1900], Date[True], Boolean[8], Byte[8], Currency[8], Double[8], Single[8], Long[8], Integer[8], Stringstrs=CBool(51/6)[True], Boolean[12/29/1899], Date[True], Boolean[255], Byte[-1], Currency[-1], Double[-1], Single[-1], Long[-1], Integer[True], Stringstrs=CCur(5.5)+CCur(3.5)[9], Currency[1/8/1900], Date[True], Boolean[9], Byte[9], Currency[9], Double[9], Single[9], Long[9], Integer[9], Stringstrs=CCur(5.5)+CDbl(3.5)[9], Currency[1/8/1900], Date[True], Boolean[9], Byte[9], Currency[9], Double[9], Single[9], Long[9], Integer[9], Stringstrs=CCur(5.5)+CSng(3.5)[9], Currency[1/8/1900], Date[True], Boolean[9], Byte[9], Currency[9], Double[9], Single[9], Long[9], Integer[9], Stringstrs=CCur(5.5)+CLng(3.5)[9.5], Currency[1/8/1900 12:00:00 PM], Date[True], Boolean[10], Byte[9.5], Currency[9.5], Double[9.5], Single[10], Long[10], Integer[9.5], Stringstrs=CCur(5.5)+CInt(3.5)[9.5], Currency[1/8/1900 12:00:00 PM], Date[True], Boolean[10], Byte[9.5], Currency[9.5], Double[9.5], Single[10], Long[10], Integer[9.5], Stringstrs=CCur(5.5)+CByte(3.5)[9.5], Currency[1/8/1900 12:00:00 PM], Date[True], Boolean[10], Byte[9.5], Currency[9.5], Double[9.5], Single[10], Long[10], Integer[9.5], Stringstrs=CCur(5.5)+CBool(3.5)[4.5], Currency[1/3/1900 12:00:00 PM], Date[True], Boolean[4], Byte[4.5], Currency[4.5], Double[4.5], Single[4], Long[4], Integer[4.5], Stringstrs=CCur(5.5)+CStr(3.5)[9], Currency[1/8/1900], Date[True], Boolean[9], Byte[9], Currency[9], Double[9], Single[9], Long[9], Integer[9], Stringstrs=CDbl(5.5)+CCur(3.5)[9], Currency[1/8/1900], Date[True], Boolean[9], Byte[9], Currency[9], Double[9], Single[9], Long[9], Integer[9], Stringstrs=CDbl(5.5)+CDbl(3.5)[9], Double[1/8/1900], Date[True], Boolean[9], Byte[9], Currency[9], Double[9], Single[9], Long[9], Integer[9], Stringstrs=CDbl(5.5)+CSng(3.5)[9], Double[1/8/1900], Date[True], Boolean[9], Byte[9], Currency[9], Double[9], Single[9], Long[9], Integer[9], Stringstrs=CDbl(5.5)+CLng(3.5)[9.5], Double[1/8/1900 12:00:00 PM], Date[True], Boolean[10], Byte[9.5], Currency[9.5], Double[9.5], Single[10], Long[10], Integer[9.5], Stringstrs=CDbl(5.5)+CInt(3.5)[9.5], Double[1/8/1900 12:00:00 PM], Date[True], Boolean[10], Byte[9.5], Currency[9.5], Double[9.5], Single[10], Long[10], Integer[9.5], Stringstrs=CDbl(5.5)+CByte(3.5)[9.5], Double[1/8/1900 12:00:00 PM], Date[True], Boolean[10], Byte[9.5], Currency[9.5], Double[9.5], Single[10], Long[10], Integer[9.5], Stringstrs=CDbl(5.5)+CBool(3.5)[4.5], Double[1/3/1900 12:00:00 PM], Date[True], Boolean[4], Byte[4.5], Currency[4.5], Double[4.5], Single[4], Long[4], Integer[4.5], Stringstrs=CDbl(5.5)+CStr(3.5)[9], Double[1/8/1900], Date[True], Boolean[9], Byte[9], Currency[9], Double[9], Single[9], Long[9], Integer[9], Stringstrs=CSng(5.5)+CCur(3.5)[9], Currency[1/8/1900], Date[True], Boolean[9], Byte[9], Currency[9], Double[9], Single[9], Long[9], Integer[9], Stringstrs=CSng(5.5)+CDbl(3.5)[9], Double[1/8/1900], Date[True], Boolean[9], Byte[9], Currency[9], Double[9], Single[9], Long[9], Integer[9], Stringstrs=CSng(5.5)+CSng(3.5)[9], Single[1/8/1900], Date[True], Boolean[9], Byte[9], Currency[9], Double[9], Single[9], Long[9], Integer[9], Stringstrs=CSng(5.5)+CLng(3.5)[9.5], Double[1/8/1900 12:00:00 PM], Date[True], Boolean[10], Byte[9.5], Currency[9.5], Double[9.5], Single[10], Long[10], Integer[9.5], Stringstrs=CSng(5.5)+CInt(3.5)[9.5], Single[1/8/1900 12:00:00 PM], Date[True], Boolean[10], Byte[9.5], Currency[9.5], Double[9.5], Single[10], Long[10], Integer[9.5], Stringstrs=CSng(5.5)+CByte(3.5)[9.5], Single[1/8/1900 12:00:00 PM], Date[True], Boolean[10], Byte[9.5], Currency[9.5], Double[9.5], Single[10], Long[10], Integer[9.5], Stringstrs=CSng(5.5)+CBool(3.5)[4.5], Single[1/3/1900 12:00:00 PM], Date[True], Boolean[4], Byte[4.5], Currency[4.5], Double[4.5], Single[4], Long[4], Integer[4.5], Stringstrs=CSng(5.5)+CStr(3.5)[9], Double[1/8/1900], Date[True], Boolean[9], Byte[9], Currency[9], Double[9], Single[9], Long[9], Integer[9], Stringstrs=CLng(5.5)+CCur(3.5)[9.5], Currency[1/8/1900 12:00:00 PM], Date[True], Boolean[10], Byte[9.5], Currency[9.5], Double[9.5], Single[10], Long[10], Integer[9.5], Stringstrs=CLng(5.5)+CDbl(3.5)[9.5], Double[1/8/1900 12:00:00 PM], Date[True], Boolean[10], Byte[9.5], Currency[9.5], Double[9.5], Single[10], Long[10], Integer[9.5], Stringstrs=CLng(5.5)+CSng(3.5)[9.5], Double[1/8/1900 12:00:00 PM], Date[True], Boolean[10], Byte[9.5], Currency[9.5], Double[9.5], Single[10], Long[10], Integer[9.5], Stringstrs=CLng(5.5)+CLng(3.5)[10], Long[1/9/1900], Date[True], Boolean[10], Byte[10], Currency[10], Double[10], Single[10], Long[10], Integer[10], Stringstrs=CLng(5.5)+CInt(3.5)[10], Long[1/9/1900], Date[True], Boolean[10], Byte[10], Currency[10], Double[10], Single[10], Long[10], Integer[10], Stringstrs=CLng(5.5)+CByte(3.5)[10], Long[1/9/1900], Date[True], Boolean[10], Byte[10], Currency[10], Double[10], Single[10], Long[10], Integer[10], Stringstrs=CLng(5.5)+CBool(3.5)[5], Long[1/4/1900], Date[True], Boolean[5], Byte[5], Currency[5], Double[5], Single[5], Long[5], Integer[5], Stringstrs=CLng(5.5)+CStr(3.5)[9.5], Double[1/8/1900 12:00:00 PM], Date[True], Boolean[10], Byte[9.5], Currency[9.5], Double[9.5], Single[10], Long[10], Integer[9.5], Stringstrs=CInt(5.5)+CCur(3.5)[9.5], Currency[1/8/1900 12:00:00 PM], Date[True], Boolean[10], Byte[9.5], Currency[9.5], Double[9.5], Single[10], Long[10], Integer[9.5], Stringstrs=CInt(5.5)+CDbl(3.5)[9.5], Double[1/8/1900 12:00:00 PM], Date[True], Boolean[10], Byte[9.5], Currency[9.5], Double[9.5], Single[10], Long[10], Integer[9.5], Stringstrs=CInt(5.5)+CSng(3.5)[9.5], Single[1/8/1900 12:00:00 PM], Date[True], Boolean[10], Byte[9.5], Currency[9.5], Double[9.5], Single[10], Long[10], Integer[9.5], Stringstrs=CInt(5.5)+CLng(3.5)[10], Long[1/9/1900], Date[True], Boolean[10], Byte[10], Currency[10], Double[10], Single[10], Long[10], Integer[10], Stringstrs=CInt(5.5)+CInt(3.5)[10], Integer[1/9/1900], Date[True], Boolean[10], Byte[10], Currency[10], Double[10], Single[10], Long[10], Integer[10], Stringstrs=CInt(5.5)+CByte(3.5)[10], Integer[1/9/1900], Date[True], Boolean[10], Byte[10], Currency[10], Double[10], Single[10], Long[10], Integer[10], Stringstrs=CInt(5.5)+CBool(3.5)[5], Integer[1/4/1900], Date[True], Boolean[5], Byte[5], Currency[5], Double[5], Single[5], Long[5], Integer[5], Stringstrs=CInt(5.5)+CStr(3.5)[9.5], Double[1/8/1900 12:00:00 PM], Date[True], Boolean[10], Byte[9.5], Currency[9.5], Double[9.5], Single[10], Long[10], Integer[9.5], Stringstrs=CByte(5.5)+CCur(3.5)[9.5], Currency[1/8/1900 12:00:00 PM], Date[True], Boolean[10], Byte[9.5], Currency[9.5], Double[9.5], Single[10], Long[10], Integer[9.5], Stringstrs=CByte(5.5)+CDbl(3.5)[9.5], Double[1/8/1900 12:00:00 PM], Date[True], Boolean[10], Byte[9.5], Currency[9.5], Double[9.5], Single[10], Long[10], Integer[9.5], Stringstrs=CByte(5.5)+CSng(3.5)[9.5], Single[1/8/1900 12:00:00 PM], Date[True], Boolean[10], Byte[9.5], Currency[9.5], Double[9.5], Single[10], Long[10], Integer[9.5], Stringstrs=CByte(5.5)+CLng(3.5)[10], Long[1/9/1900], Date[True], Boolean[10], Byte[10], Currency[10], Double[10], Single[10], Long[10], Integer[10], Stringstrs=CByte(5.5)+CInt(3.5)[10], Integer[1/9/1900], Date[True], Boolean[10], Byte[10], Currency[10], Double[10], Single[10], Long[10], Integer[10], Stringstrs=CByte(5.5)+CByte(3.5)[10], Byte[1/9/1900], Date[True], Boolean[10], Byte[10], Currency[10], Double[10], Single[10], Long[10], Integer[10], Stringstrs=CByte(5.5)+CBool(3.5)[5], Integer[1/4/1900], Date[True], Boolean[5], Byte[5], Currency[5], Double[5], Single[5], Long[5], Integer[5], Stringstrs=CByte(5.5)+CStr(3.5)[9.5], Double[1/8/1900 12:00:00 PM], Date[True], Boolean[10], Byte[9.5], Currency[9.5], Double[9.5], Single[10], Long[10], Integer[9.5], Stringstrs=CBool(5.5)+CCur(3.5)[2.5], Currency[1/1/1900 12:00:00 PM], Date[True], Boolean[2], Byte[2.5], Currency[2.5], Double[2.5], Single[2], Long[2], Integer[2.5], Stringstrs=CBool(5.5)+CDbl(3.5)[2.5], Double[1/1/1900 12:00:00 PM], Date[True], Boolean[2], Byte[2.5], Currency[2.5], Double[2.5], Single[2], Long[2], Integer[2.5], Stringstrs=CBool(5.5)+CSng(3.5)[2.5], Single[1/1/1900 12:00:00 PM], Date[True], Boolean[2], Byte[2.5], Currency[2.5], Double[2.5], Single[2], Long[2], Integer[2.5], Stringstrs=CBool(5.5)+CLng(3.5)[3], Long[1/2/1900], Date[True], Boolean[3], Byte[3], Currency[3], Double[3], Single[3], Long[3], Integer[3], Stringstrs=CBool(5.5)+CInt(3.5)[3], Integer[1/2/1900], Date[True], Boolean[3], Byte[3], Currency[3], Double[3], Single[3], Long[3], Integer[3], Stringstrs=CBool(5.5)+CByte(3.5)[3], Integer[1/2/1900], Date[True], Boolean[3], Byte[3], Currency[3], Double[3], Single[3], Long[3], Integer[3], Stringstrs=CBool(5.5)+CBool(3.5)[-2], Integer[12/28/1899], Date[True], Boolean[error], error[-2], Currency[-2], Double[-2], Single[-2], Long[-2], Integer[-2], Stringstrs=CBool(5.5)+CStr(3.5)[2.5], Double[1/1/1900 12:00:00 PM], Date[True], Boolean[2], Byte[2.5], Currency[2.5], Double[2.5], Single[2], Long[2], Integer[2.5], Stringstrs=CStr(5.5)+CCur(3.5)[9], Currency[1/8/1900], Date[True], Boolean[9], Byte[9], Currency[9], Double[9], Single[9], Long[9], Integer[9], Stringstrs=CStr(5.5)+CDbl(3.5)[9], Double[1/8/1900], Date[True], Boolean[9], Byte[9], Currency[9], Double[9], Single[9], Long[9], Integer[9], Stringstrs=CStr(5.5)+CSng(3.5)[9], Double[1/8/1900], Date[True], Boolean[9], Byte[9], Currency[9], Double[9], Single[9], Long[9], Integer[9], Stringstrs=CStr(5.5)+CLng(3.5)[9.5], Double[1/8/1900 12:00:00 PM], Date[True], Boolean[10], Byte[9.5], Currency[9.5], Double[9.5], Single[10], Long[10], Integer[9.5], Stringstrs=CStr(5.5)+CInt(3.5)[9.5], Double[1/8/1900 12:00:00 PM], Date[True], Boolean[10], Byte[9.5], Currency[9.5], Double[9.5], Single[10], Long[10], Integer[9.5], Stringstrs=CStr(5.5)+CByte(3.5)[9.5], Double[1/8/1900 12:00:00 PM], Date[True], Boolean[10], Byte[9.5], Currency[9.5], Double[9.5], Single[10], Long[10], Integer[9.5], Stringstrs=CStr(5.5)+CBool(3.5)[4.5], Double[1/3/1900 12:00:00 PM], Date[True], Boolean[4], Byte[4.5], Currency[4.5], Double[4.5], Single[4], Long[4], Integer[4.5], Stringstrs=CStr(5.5)+3.5[9], Double[1/8/1900], Date[True], Boolean[9], Byte[9], Currency[9], Double[9], Single[9], Long[9], Integer[9], String

Sideway BICK Blog

30/03


Copyright © 2000-2020 Sideway . All rights reserved Disclaimerslast modified on 26 January 2013