|
Description Syntax Return
Datatype Example Migration
CLng Function - Visual Basic 6.0 (VB 6.0) |
Returns an expression that has been converted to a
Variant of subtype Long. |
|
Syntax: |
CLng(expression)
Parameter |
Description |
expression |
Required. The expression argument is any valid expression. |
|
Return Data type: |
|
Long |
Example: |
Statement |
Result |
Remark |
CLng(1) |
1 |
|
|
CLng(1.5) |
2 |
|
|
CLng(2.5) |
2 |
Nearest Even Number |
|
CLng(0) |
0 |
|
|
CLng(-1) |
-1 |
|
|
CLng(123.5678) |
124 |
|
|
CLng(123.4567) |
123 |
|
|
CLng(2147483648) |
Error |
Overflow (-2,147,483,648 to 2,147,483,647) |
|
CLng(-2147483649) |
Error |
Overflow (-2,147,483,648 to 2,147,483,647) |
|
CLng("123.4567") |
123 |
|
|
CLng(unknown) |
0 |
uninitialized Variable |
|
CLng(Null) |
Null |
|
|
CLng("abcd") |
Error |
Type mismatch |
|
CLng(True) |
-1 |
True - Non Zero |
|
CLng(False) |
0 |
False - Zero |
|
|
|
Migration from Visual Basic 6.0 (VB 6.0) to |
|
CLng Function in VB Script (VBS) |
|
CLng Function in JScript (JS) |
|
CLng Function in ASP (Active Server Page) |
|
CLng Function in PHP Script |
|
CLng Function in MS-Access |
|
CLng Function in MS SQL Server |
|
CLng Function in Oracle |
|
CLng Function in C Language |
|
CLng Function in C++ Language |
|
CLng Function in Foxpro |
|
CLng Function in Fortran |
|
CLng Function in MS Excel Sheet |
|
|
|
|
|