Mega Code Archive

 
Categories / VisualBasic Script / Data Type Functions
 

VBAs Functions for Complex Data Conversion

Function(Arguments)             Returns          Asc(string)                     The ANSI character code for the first character in the string.         Chr(number)                     The string for the specified character code (a number between 0 and 255).         Format(expression, format)      A variant containing expression formatted as specified by format. (You'll see how Format works in "Using the Format Function to Format an Expression," later in the chapter.)         Hex(number)                     the hexadecimal value of number.         Oct(number)                     the octal value of number.         RGB(number1, number2, number3)  the color value specified by number1, number2, and number3.         QBColor(number)                 A Long containing the RGB value for the specified color.         Str(number)                     A string representation of number.         Val(string)                     The numeric portion of string