FontFace="Verdana,10,,PLAIN"
object_expression="An expression that specifies a particular object.  This expression can include any of the object's containers."
numeric_expression="Any expression that can be evaluated as a number.  Elements of the expression can include any combination of keywords, variables, constants, and operators that result in a number."
Boolean="An expression that evaluates to either True or False."
constant="A named item that retains a constant value throughout the execution of a program, as opposed to a variable, whose value can change during execution. Constants can be used anywhere in your code in place of actual values.  A constant may be a string or numeric literal, another constant, or any combination that includes arithmetic or logical operators except Is and exponentiation."
Boolean_expression="An expression that evaluates to either True or False."
constant="A named item that retains a constant value throughout the execution of a program, as opposed to a variable, whose value can change during execution. Constants can be used anywhere in your code in place of actual values.  A constant may be a string or numeric literal, another constant, or any combination that includes arithmetic or logical operators except Is and exponentiation."
String_="Any expression that evaluates to a sequence of contiguous characters.  Elements of the expression can include a function that returns a string, a string literal, a string constant, a string variable, a string Variant, or a function that returns a string Variant (VarType 8)."
string_expression="Any expression that evaluates to a sequence of contiguous characters.  Elements of the expression can include a function that returns a string, a string literal, a string constant, a string variable, a string Variant, or a function that returns a string Variant (VarType 8)."
Variant="A special data type that can contain numeric, string, or date data as well as the special values Empty and Null.  The VarType function defines how the data in a Variant is treated.  All variables become variant types if not explicitly declared as some other type."
variant_data_type="A special data type that can contain numeric, string, or date data as well as the special values Empty and Null.  The VarType function defines how the data in a Variant is treated.  All variables become variant types if not explicitly declared as some other type."
Integer="Integer variables are stored as 16-bit (2-byte) numbers ranging in value from -32,768 to 32,767."
Long="Long (long integer) variables are stored as signed 32-bit (4-byte) numbers ranging in value from -2,147,483,648 to 2,147,483,647."
Single="Single (single-precision floating-point) variables are stored as IEEE 32-bit (4-byte) floating-point numbers, ranging in value from -3.402823E38 to -1.401298E-45 for negative values and from 1.401298E-45 to 3.402823E38 for positive values."
Double="Double (double-precision floating-point) variables are stored as IEEE 64-bit (8-byte) floating-point numbers ranging in value from -1.79769313486231E308 to -4.94065645841247E-324 for negative values and from 4.94065645841247E-324 to 1.79769313486232E308 for positive values."
Unsigned_short="Unsigned shorts range in value from 0 to 65,535. The unsigned keyword indicates that the most significant bit of the integer variable represents a data bit rather than a signed bit."
Unsigned_long="Unsigned longs range in value from 0 to 4,294,967,295. The unsigned keyword indicates that the most significant bit of the integer variable represents a data bit rather than a signed bit."
LPWSTR="Pointer to a null-terminated string of 16-bit Unicode characters."
LPSTR="Pointer to a null-terminated string of 8-bit Windows (ANSI) characters."
IUnknown_Pointer="The IUnknown interface is the root interface for all COM objects. It provides two essential services:  control over the object's lifetime (through AddRef and Release), and access to other interfaces that the object supports (through QueryInterface)."
LPUNKNOWN="The IUnknown interface is the root interface for all COM objects. It provides two essential services:  control over the object's lifetime (through AddRef and Release), and access to other interfaces that the object supports (through QueryInterface)."
Singleton="A singleton is an object that is the one and only one instance of its class."
Byte="The Byte data type can hold positive values from 0 to 255. A Byte variable requires only a single byte of memory, so it's very efficient. You can use a Byte variable to hold an Integer value if you know that value will never be greater than 255."
