|
Abs()
Returns the absolute value of a number.
Syntax: Abs(number)
number is any valid numeric expression. If number contains Null, Null is returned; if it is an uninitialized variable, zero is returned.
Array()
Returns a Variant containing an array.
Syntax: Array(arglist)
arglist is a comma-delimited list of values that are assigned to the elements of an array contained with the Variant. If no arguments are specified, an array of zero length is
created.
Asc()
Returns the ANSI character code corresponding to the first letter in a string.
Syntax: Asc(string)
string is any valid string expression. If string contains no
characters, a run-time error occurs.
Atn()
Returns the arctangent of a number.
Syntax: Atn(number)
number is any valid numeric expression.
CBooI()
Returns an expression that has been converted to a Variant of subtype Boolean.
Syntax: CBool(expression)
expression is any valid expression.
CByte()
Returns an expression that has been converted to a Variant of subtype
Byte.
Syntax: CByte (expression)
expression is any valid expression.
CCur()
Returns an expression that has been converted to a Variant of subtype
Currency.
Syntax: CCur (expression)
expression is any valid expression.
CDate()
Returns an expression that has been converted to a Variant of subtype Date.
Syntax: CDate (date)
date is any valid date expression.
CDbI()
Returns an expression that has been converted to a Variant of subtype Double.
Syntax: CDbI(expression)
expression is any valid expression.
Chr()
Returns the character associated with the specified ANSI character code.
Syntax: Chr(charcode)
charcode is a number that identifies a character.
CInt()
Returns an expression that has been converted to a Variant of subtype
Integer.
Syntax: CInt (expression)
expression is any valid expression.
CLng()
Returns an expression that has been converted to a Variant of subtype
Long.
Syntax: CLng (expression)
expression is any valid expression.
Cos()
Returns the cosine of an angle.
Syntax: Cos (number)
number is any valid numeric expression that expresses an angle in radians.
CreateObject()
Creates and returns a reference to an Automation object.
Syntax: CreateObject (class)
class argument uses the syntax servername.
typename. servername is the name of the application providing the object. typename is the type or
class of the object to create.
CSng()
Returns an expression that has been converted to a Variant of subtype Single.
Syntax: CSng(expression)
expression is any valid expression.
CStr()
Returns an expression that has been converted to a Variant of subtype String.
Syntax: CStr(expression)
expression is any valid expression.
|