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...]

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

CSng Example Syntax VB.NET ASP.NET | CSng | Source Code Summary: – Illustrates using CSng with Source Code Syntax Example in VB.NET ASP.NET. View Other VB.NET ASP.NET Source Code Examples Purpose: Converts positive and negative numbers into Single data type Syntax: CSng(expression) Parameters Description expression -3.402823E+38 through -1.401298E-45 for negative values; 1.401298E-45 through 3.402823E+38 for positive values Result... [Read More...]

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

CShort Example Syntax VB.NET ASP.NET | CShort | Source Code Summary: – Illustrates using CShort with Source Code Syntax Example in VB.NET ASP.NET. View Other VB.NET ASP.NET Source Code Examples Purpose: Converts positive and negative numbers into Short data type Syntax: CShort(expression) Parameters Description expression -32,768 through 32,767; fractional parts are rounded Result Data Type Description Short signed... [Read More...]

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

CSByte Example Syntax VB.NET ASP.NET | CSByte | Source Code Summary: – Illustrates using CSByte with Source Code Syntax Example in VB.NET ASP.NET. View Other VB.NET ASP.NET Source Code Examples Purpose: Converts positive and negative numbers into SByte data type Syntax: CSByte(expression) Parameters Description expression -128 through 127; fractional parts are rounded. Result Data Type Description SByte Signed Byte Quick... [Read More...]

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

CLng Example Syntax VB.NET ASP.NET | CLng | Source Code Summary: – Illustrates using CLng with Source Code Syntax Example in VB.NET ASP.NET. View Other VB.NET ASP.NET Source Code Examples Purpose: Converts positive and negative numbers into Long data type Syntax: CLng(expression) Parameters Description expression -9,223,372,036,854,775,808 through 9,223,372,036,854,775,807; fractional parts are rounded. Result Data... [Read More...]

« Previous PageNext Page »