Ceiling Example Syntax VB.NET ASP.NET | Ceiling | Source Code

Ceiling Example Syntax VB.NET ASP.NET | Ceiling | Source Code Summary: – Illustrates using Ceiling with Source Code Syntax Example in VB.NET ASP.NET. View Other VB.NET ASP.NET Source Code Examples Purpose: takes a decimal or double number and returns a value that represents the next equal or higher whole number. Although the result is a whole number, it is returned as a the same data type that was passed in. Math.Floor is... [Read More...]

BigMul Example Syntax VB.NET ASP.NET | BigMul | Source Code

BigMul Example Syntax VB.NET ASP.NET | BigMul | Source Code Summary: – Illustrates using BigMul with Source Code Syntax Example in VB.NET ASP.NET. View Other VB.NET ASP.NET Source Code Examples Purpose: takes 2 32-bit integer numbers and returns their full product as a 64-bit integer Syntax: BigMul(int1 as Int32, int2 as Int32) Parameters Description int1 Int32 int2 Int32 Result Data Type Description 64 bit integer full... [Read More...]

Atan2 Example Syntax VB.NET ASP.NET | Atan2 | Source Code

Atan2 Example Syntax VB.NET ASP.NET | Atan2 | Source Code Summary: – Illustrates using Atan2 with Source Code Syntax Example in VB.NET ASP.NET. View Other VB.NET ASP.NET Source Code Examples Purpose: takes 2 double data type numbers and returns a double value containing the angle (measured in radians) whose tangent is the quotient of two specified numbers (you can convert the radians to degrees by multiplying them by Math.PI/180) Syntax:... [Read More...]

Atan Example Syntax VB.NET ASP.NET | Atan | Source Code

Atan Example Syntax VB.NET ASP.NET | Atan | Source Code Summary: – Illustrates using Atan with Source Code Syntax Example in VB.NET ASP.NET. View Other VB.NET ASP.NET Source Code Examples Purpose: converts a tangent to radians of an angle. The function takes a double data type number and returns a double value that repesents the radians of the angle for that tangent. (you can convert the radians to degrees by multiplying them... [Read More...]

Asin Example Syntax VB.NET ASP.NET | Asin | Source Code

Asin Example Syntax VB.NET ASP.NET | Asin | Source Code Summary: – Illustrates using Asin with Source Code Syntax Example in VB.NET ASP.NET. View Other VB.NET ASP.NET Source Code Examples Purpose: takes a double data type number that represents a sine and returns a double value that represents the angle of that sine when measured in radians. (you can convert the radians to degrees by multiplying them by Math.PI/180) Syntax:... [Read More...]

Acos Example Syntax VB.NET ASP.NET | Acos | Source Code

Acos Example Syntax VB.NET ASP.NET | Acos | Source Code Summary: – Illustrates using Acos with Source Code Syntax Example in VB.NET ASP.NET. View Other VB.NET ASP.NET Source Code Examples Purpose: takes a cosine as double data type number and returns a double value that represents the angle in radians (you can convert the radians to degrees by multiplying them by Math.PI/180) Syntax: Acos(double) Parameters Description double Any... [Read More...]

Abs Example Syntax VB.NET ASP.NET | Abs | Source Code

Abs Example Syntax VB.NET ASP.NET | Abs | Source Code Summary: – Illustrates using Abs with Source Code Syntax Example in VB.NET ASP.NET. View Other VB.NET ASP.NET Source Code Examples Purpose: Returns the absolute value for the data type that was passed in. Syntax: Abs(expression) Parameters Description expression 1. decimal – returns decimal number 2. double – returns double-percision floating point number ... [Read More...]

CUShort Example Syntax VB.NET ASP.NET | CUShort | Source Code

CUShort Example Syntax VB.NET ASP.NET | CUShort | Source Code Summary: – Illustrates using CUShort with Source Code Syntax Example in VB.NET ASP.NET. View Other VB.NET ASP.NET Source Code Examples Purpose: Converts numbers into UShort data type – UShort data type is a 16-bit (2-byte) unsigned integer that can hold values from 0 to 65,535 (unsigned). Rounds fractions to whole numbers Syntax: CUShort(expression) Parameters Description expression 0... [Read More...]

CULng Example Syntax VB.NET ASP.NET | CULng | Source Code

CULng Example Syntax VB.NET ASP.NET | CULng | Source Code Summary: – Illustrates using CULng with Source Code Syntax Example in VB.NET ASP.NET. View Other VB.NET ASP.NET Source Code Examples Purpose: Converts numbers into ULong data type – ULong data type is a 64-bit (8-byte) unsigned integer that can hold values from 0 to 18,446,744,073,709,551,615 (unsigned). Rounds fractions to whole numbers Syntax: CULng(expression) ... [Read More...]

CUInt Example Syntax VB.NET ASP.NET | CUInt | Source Code

CUInt Example Syntax VB.NET ASP.NET | CUInt | Source Code Summary: – Illustrates using CUInt with Source Code Syntax Example in VB.NET ASP.NET. View Other VB.NET ASP.NET Source Code Examples Purpose: Converts numbers into UInteger data type – UInteger data type is a 32-bit (4-byte) unsigned integer that can hold values from 0 to about 4 billion (4,294,967,295). Rounds fractions to whole numbers Syntax: CUInt(expression) ... [Read More...]

CStr Example Syntax VB.NET ASP.NET | CStr | Source Code

CStr Example Syntax VB.NET ASP.NET | CStr | Source Code Summary: – Illustrates using CStr with Source Code Syntax Example in VB.NET ASP.NET. View Other VB.NET ASP.NET Source Code Examples Purpose: Converts boolean, date, and numeric data types into String data type Syntax: CStr(expression) Parameters Description expression boolean, date, and numeric data types Result Data Type Description String 1. If boolean, returns... [Read More...]

« Previous PageNext Page »