
      7/05/95             PAL to Delphi Reference Chart            Page   1


     [PAL]                [Delphi]              [Description]
     --------------------------------------------------------------------------
     $ [type]             Comp
                          TCurrencyField        (Predefined component class)
                          Double
                          Extended
                          Real
                          Single
     --------------------------------------------------------------------------
     * [multiply]         * [multiply]
                          Shl                   Bitwise operator (Pascal
                                                reserved word)
                          Sqr                   Returns the square of the
                                                argument.
     --------------------------------------------------------------------------
     + [add]              + [add]
                          Inc                   Increments a variable.
     --------------------------------------------------------------------------
     + [string concat]    +
                          Concat                Concatenates a sequence of
                                                strings.
                          StrCat                Appends a copy of one string to
                                                the end of another and returns
                                                the concatenated string.
                          StrLCat               Appends characters from one
                                                string to the end of another
                                                and returns the concatenated
                                                string.
     --------------------------------------------------------------------------
     - [subtract]         - [subtract]
                          Dec                   Decrements a variable.
     --------------------------------------------------------------------------
     - [unary minus]      - [unary minus]
     --------------------------------------------------------------------------
     / [divide]           / [divide]
                          Div                   (Pascal reserved word)
                          Shr                   Bitwise operator (Pascal
                                                reserved word)
     --------------------------------------------------------------------------
     ;comment             {comment}
     --------------------------------------------------------------------------
     = [assignment]       :=
                          Move                  Copies bytes from source to
                                                dest.
                          New                   Creates a new dynamic variable
                                                and sets a pointer variable to
                                                point to it.
                          NewStr                Allocates a new string on the
                                                heap.
     --------------------------------------------------------------------------
     = [string            AppendStr             Adds a given string to an
     assignment]                                existing string


     Compilation (c) 1995, Craig L. Jones.  All rights reserved.


      7/05/95             PAL to Delphi Reference Chart            Page   2


     [PAL]                [Delphi]              [Description]
     --------------------------------------------------------------------------
     = [string            StrCopy               Copies one string to another.
     assignment]
                          StrECopy              Copies one string to another
                                                and returns a pointer to the
                                                end of the resulting string.
                          StrLCopy              Copies characters from one
                                                string to another.
                          StrMove               Copies characters from one
                                                string to another.
                          StrNew                Allocates a string on a heap.
                          StrPas                Converts a null-terminated
                                                string to a Pascal-style
                                                string.
                          StrPCopy              Copies a Pascal-style string to
                                                a null-terminated string.
     --------------------------------------------------------------------------
     = [string compare]   AnsiCompareStr        Performs a case sensitive
                                                compare of two strings.
                          AnsiCompareText       Performs a non-case sensitive
                                                compare of two strings.
                          StrComp               Compares two strings.
                          StrIComp              Compares two strings without
                                                case sensitivity.
                          StrLComp              Compares two strings, up to a
                                                maximum length.
                          StrLIComp             Compares two strings, up to a
                                                maximum length, without case
                                                sensitivity.
     --------------------------------------------------------------------------
     ? [statement]        TShape                (Predefined component class)
                          WriteBuf              Writes a block of characters to
                                                the CRT window.
                          WriteChar             Writes a single character to
                                                the CRT window.
                          Writeln               Executes the Write procedure,
                                                then outputs an end-of-line
                                                marker to the file.
     --------------------------------------------------------------------------
     ?? [statement]       Write                 For typed files, writes a
                                                variable into a file component.
                                                For text files, writes one or
                                                more values to the file.
     --------------------------------------------------------------------------
     @ [statement]        CursorTo              Moves the cursor to the given
                                                coordinates within the virtual
                                                screen.
                          GotoXY                Moves the cursor to the given
                                                coordinates within the virtual
                                                screen.



     Compilation (c) 1995, Craig L. Jones.  All rights reserved.


      7/05/95             PAL to Delphi Reference Chart            Page   3


     [PAL]                [Delphi]              [Description]
     --------------------------------------------------------------------------
     A [type]             Char
                          String                (Pascal reserved word)
     --------------------------------------------------------------------------
     ATan                 ArcTan                Returns the arc tangent of the
                                                argument.
     --------------------------------------------------------------------------
     ATan2                ArcTan                Returns the arc tangent of the
                                                argument.
     --------------------------------------------------------------------------
     Abs                  Abs                   Returns the absolute value of
                                                the argument.
     --------------------------------------------------------------------------
     Accept               TDBEdit               (Predefined component class)
                          TEdit                 (Predefined component class)
                          InputBox
                          TIntegerField         (Predefined component class)
                          ReadBuf               Inputs a line from the CRT
                                                window.
                          TSmallIntField        (Predefined component class)
                          TDBText               (Predefined component class)
     --------------------------------------------------------------------------
     Add                  TBatchMove            (Predefined component class)
     --------------------------------------------------------------------------
     And                  And                   Logical operator (Pascal
                                                reserved word)
     --------------------------------------------------------------------------
     Array                Array                 (Pascal reserved word)
     --------------------------------------------------------------------------
     ArraySize            SizeOf                Returns the number of bytes
                                                occupied by the argument.
     --------------------------------------------------------------------------
     Autolib              Uses                  (Pascal reserved word)
     --------------------------------------------------------------------------
     B [type]             TBlobField            (Predefined component class)
     --------------------------------------------------------------------------
     BlankDate            Nil                   (Pascal reserved word)
     --------------------------------------------------------------------------
     BlankNum             Nil                   (Pascal reserved word)
     --------------------------------------------------------------------------
     CalcDebug            {$Q}                  Arithmetic Overflow Checking
                                                (Pascal compiler directive)
                          {$R}                  Range Checking (Pascal compiler
                                                directive)
     --------------------------------------------------------------------------
     Cancel               TButton               (Predefined component class)
     --------------------------------------------------------------------------
     Canvas               TScrollBox            (Predefined component class)
     --------------------------------------------------------------------------
     Case                 Case                  (Pascal reserved word)



     Compilation (c) 1995, Craig L. Jones.  All rights reserved.


      7/05/95             PAL to Delphi Reference Chart            Page   4


     [PAL]                [Delphi]              [Description]
     --------------------------------------------------------------------------
     CharWaiting          KeyPressed            Determines if a key has been
                                                pressed on the keyboard.
     --------------------------------------------------------------------------
     CheckBoxes           TCheckBox             (Predefined component class)
                          TDBCheckBox           (Predefined component class)
     --------------------------------------------------------------------------
     Chr                  Chr                   Returns a character with a
                                                specified ordinal number.
     --------------------------------------------------------------------------
     Clear                ClrScr                Clears the screen and returns
                                                the cursor to the upper left
                                                corner.
     --------------------------------------------------------------------------
     Clear EOL            ClrEol                Clears all characters from the
                                                cursor position to the end of
                                                the line without moving the
                                                cursor.
     --------------------------------------------------------------------------
     Click                OnClick [Event]
     --------------------------------------------------------------------------
     Col                  WhereY                Returns the Y coordinate of the
                                                current cursor location.
     --------------------------------------------------------------------------
     Cos                  Cos                   Returns the cosine of the
                                                argument (x is an angle, in
                                                radians).
     --------------------------------------------------------------------------
     D [type]             TDateField            (Predefined component class)
     --------------------------------------------------------------------------
     DateVal              EncodeDate            Returns values specified in
                                                date format.
                          EncodeTime            Returns values specified in
                                                time format.
                          StrToDate             Coverts a string to a date
                                                format.
                          StrToDateTime         Converts a string to a
                                                date/time format.
                          Val
     --------------------------------------------------------------------------
     Day                  DecodeDate            Decodes the specified date
     --------------------------------------------------------------------------
     Debug                {$D}                  Debug Information (Pascal
                                                compiler directive)
                          Raise                 (Pascal reserved word)
     --------------------------------------------------------------------------
     Delete               DeleteFile            Deletes the given file.
                          Erase                 Erases an external file.
     --------------------------------------------------------------------------
     Diag [command line   {$D}                  Debug Information (Pascal
     switch]                                    compiler directive)


     Compilation (c) 1995, Craig L. Jones.  All rights reserved.


      7/05/95             PAL to Delphi Reference Chart            Page   5


     [PAL]                [Delphi]              [Description]
     --------------------------------------------------------------------------
     Directory            GetDir                Returns the current directory
                                                of specified drive.
     --------------------------------------------------------------------------
     Double               TBevel                (Predefined component class)
     --------------------------------------------------------------------------
     DriveSpace           DiskFree              Returns the amount of free disk
                                                space.
                          DiskSize              Returns the size of the
                                                specified disk.
     --------------------------------------------------------------------------
     DynArray             Set Of
                          TStrings              (Predefined component class)
                          TStrings.Free         (Predefined component class)
     --------------------------------------------------------------------------
     DynArraySize         TStrings.Count        (Predefined component class)
     --------------------------------------------------------------------------
     EMK [command line    {$M                   Memory Allocation Sizes (Pascal
     switch]              stacksize,heapsize}   compiler directive)
     --------------------------------------------------------------------------
     Editor               TMemoField            (Predefined component class)
     --------------------------------------------------------------------------
     Else                 {$ELSE}               Compiles or ignores a portion
                                                of source text (Pascal compiler
                                                directive)
                          Else                  (Pascal reserved word)
     --------------------------------------------------------------------------
     EndFor               Begin...End           (Pascal reserved word)
     --------------------------------------------------------------------------
     EndForEach           Begin...End           (Pascal reserved word)
     --------------------------------------------------------------------------
     EndIf                {$ENDIF}              Ends the conditional section
                                                (Pascal compiler directive)
                          Begin...End           (Pascal reserved word)
     --------------------------------------------------------------------------
     EndProc              End                   (Pascal reserved word)
     --------------------------------------------------------------------------
     EndWhile             Begin...End           (Pascal reserved word)
     --------------------------------------------------------------------------
     ErrorProc            Try...Except          (Pascal reserved word)
                          Try...Finally         (Pascal reserved word)
     --------------------------------------------------------------------------
     Exit                 Halt                  Stops program execution and
                                                returns to the operating
                                                system.
     --------------------------------------------------------------------------
     Exp                  Exp                   Returns the exponential of the
                                                argument.
                          Sqr                   Returns the square of the
                                                argument.



     Compilation (c) 1995, Craig L. Jones.  All rights reserved.


      7/05/95             PAL to Delphi Reference Chart            Page   6


     [PAL]                [Delphi]              [Description]
     --------------------------------------------------------------------------
     ExtK [command line   {$M                   Memory Allocation Sizes (Pascal
     switch]              stacksize,heapsize}   compiler directive)
                          {$M                   Memory Allocation Sizes (Pascal
                          stacksize,heapsize}   compiler directive)
     --------------------------------------------------------------------------
     FileRead             FileOpen              Opens a specific file.
                          FileRead              Reads from a specific file.
                          Readln                Executes the Read procedure,
                                                then skips to the next line of
                                                the file.
     --------------------------------------------------------------------------
     FileRead Binary      BlockRead             Reads one or more records into
                                                a variable.
     --------------------------------------------------------------------------
     FileSize             FileSize              Returns the current size of a
                                                file.
     --------------------------------------------------------------------------
     FileWrite Binary     BlockWrite            Writes one or more records from
                                                a variable.
     --------------------------------------------------------------------------
     Fill                 FillChar              Fills a specified number
                                                (count) of contiguous bytes
                                                with a specified value (can be
                                                type Byte or Char).
     --------------------------------------------------------------------------
     For                  Downto                (Pascal reserved word)
                          For                   (Pascal reserved word)
     --------------------------------------------------------------------------
     ForEach              For                   (Pascal reserved word)
     --------------------------------------------------------------------------
     Format               FloatToTextFmt        Converts the given floating-
                                                point value to its decimal
                                                representation.
                          FmtStr                Formats a series of arguments
                                                and the results are returned in
                                                the parameter Result.
                          Format                Formats a series of arguments
                                                and returns the result as a
                                                Pascal string.
                          FormatFloat           Formats the floating-point
                                                value using the format string
                                                given by Format.
                          IntToHex              Converts an integer to a
                                                hexidecimal
                          IntToStr              Converts an integer to a string
                          StrFmt                Formats a series of arguments.
                          StrLFmt               Formats a series of arguments
                                                and the result contains a
                                                pointer to the destination
                                                buffer.


     Compilation (c) 1995, Craig L. Jones.  All rights reserved.


      7/05/95             PAL to Delphi Reference Chart            Page   7


     [PAL]                [Delphi]              [Description]
     --------------------------------------------------------------------------
     Format("D1")         DateToStr             Converts a value from date
                                                format to a string.
                          FormatDateTime        Formats a date and time using
                                                the specified format.
     --------------------------------------------------------------------------
     Frame                TBevel                (Predefined component class)
                          TGroupBox             (Predefined component class)
                          TPanel                (Predefined component class)
     --------------------------------------------------------------------------
     GetChar              ReadKey               Reads a character from the
                                                keyboard.
     --------------------------------------------------------------------------
     Idle                 TTimer                (Predefined component class)
     --------------------------------------------------------------------------
     If                   {$IFDEF}              Compiles source text if Name is
                                                defined (Pascal compiler
                                                directive)
                          {$IFNDEF}             Compiles source text if Name is
                                                NOT defined (Pascal compiler
                                                directive)
                          {$IFOPT}              Compiles source text if a
                                                compiler switch is in a
                                                specified state (+ or -)
                                                (Pascal compiler directive)
                          If                    (Pascal reserved word)
     --------------------------------------------------------------------------
     Import               FileOpen              Opens a specific file.
     --------------------------------------------------------------------------
     Insert Query         TBatchMove            (Predefined component class)
     --------------------------------------------------------------------------
     Int                  Frac                  Returns the fractional part of
                                                the argument.
                          Int                   Returns the Integer part of the
                                                argument.
                          Trunc                 Truncates a real-type value to
                                                an Integer-type value.
     --------------------------------------------------------------------------
     IsAssigned           IsValidIdent          Returns true if the given
                                                string is a valid identifier.
     --------------------------------------------------------------------------
     IsBlank              Nil
     --------------------------------------------------------------------------
     IsFile               FileExists            Returns True if file exists.
     --------------------------------------------------------------------------
     IsProc               IsValidIdent          Returns true if the given
                                                string is a valid identifier.
     --------------------------------------------------------------------------
     IsRunTime            {$IFDEF...}
     --------------------------------------------------------------------------
     L [type]             Boolean


     Compilation (c) 1995, Craig L. Jones.  All rights reserved.


      7/05/95             PAL to Delphi Reference Chart            Page   8


     [PAL]                [Delphi]              [Description]
     --------------------------------------------------------------------------
     L [type]             TBooleanField         (Predefined component class)
     --------------------------------------------------------------------------
     Label                TLabel                (Predefined component class)
     --------------------------------------------------------------------------
     LeaveK [command line {$M                   Memory Allocation Sizes (Pascal
     switch]              stacksize,heapsize}   compiler directive)
     --------------------------------------------------------------------------
     Len                  Length                Returns the dynamic length of a
                                                string.
                          StrEnd                Returns a pointer to the end of
                                                a string.
                          StrLen                Returns the number of
                                                characters in Str.
     --------------------------------------------------------------------------
     Ln                   Ln                    Returns the natural logarithm
                                                of the argument.
     --------------------------------------------------------------------------
     Loop                 Continue              Continues a for, while, or
                                                repeat statement.
     --------------------------------------------------------------------------
     Lower                AnsiLowerCase         Converts characters to
                                                lowercase.
                          LowerCase             Lowercases the given string
                          StrLower              Converts a string to lower
                                                case.
     --------------------------------------------------------------------------
     M [type]             TDBMemo               (Predefined component class)
                          TMemo                 (Predefined component class)
     --------------------------------------------------------------------------
     Max                  High                  Returns the highest value in
                                                the range of the argument.
     --------------------------------------------------------------------------
     MemLeft              MaxAvail              Returns the size of the largest
                                                contiguous free block in the
                                                heap.
                          MemAvail              Returns the amount of all free
                                                memory in the heap.
     --------------------------------------------------------------------------
     Min                  Low                   Returns the lowest value in the
                                                range of the argument.
     --------------------------------------------------------------------------
     Mod                  Mod                   (Pascal reserved word)
     --------------------------------------------------------------------------
     Month                DecodeDate            Decodes the specified date
     --------------------------------------------------------------------------
     N [type]             Comp
                          Double
                          Extended
                          Real
                          Single


     Compilation (c) 1995, Craig L. Jones.  All rights reserved.


      7/05/95             PAL to Delphi Reference Chart            Page   9


     [PAL]                [Delphi]              [Description]
     --------------------------------------------------------------------------
     Not                  Not                   Logical operator (Pascal
                                                reserved word)
     --------------------------------------------------------------------------
     NumVal               StrToFloat            Converts the given string to a
                                                floating-point value.
                          StrToInt              Converts a string to an integer
                          StrToIntDef           Converts a string to an integer
                                                or the default
                          TextToFloat           Converts the null-terminated
                                                string to a floating-point
                                                value.
                          Val                   Converts a string value to its
                                                numeric representation.
     --------------------------------------------------------------------------
     OK                   TButton               (Predefined component class)
     --------------------------------------------------------------------------
     Or                   Or                    Logical operator (Pascal
                                                reserved word)
     --------------------------------------------------------------------------
     ParseFileName        ExtractFileExt        Returns the file extension.
                          ExtractFileName       Returns the file name.
                          ExtractFilePath       Returns the complete file path.
     --------------------------------------------------------------------------
     Pi                   Pi                    Returns the value of Pi.
     --------------------------------------------------------------------------
     PickArray            TDBListBox            (Predefined component class)
                          TListBox              (Predefined component class)
     --------------------------------------------------------------------------
     PickDynArray         TDBListBox            (Predefined component class)
                          TListBox              (Predefined component class)
     --------------------------------------------------------------------------
     PickDynArrayIndex    TDBListBox            (Predefined component class)
                          TListBox              (Predefined component class)
     --------------------------------------------------------------------------
     PickFile             TFileListBox          (Predefined component class)
     --------------------------------------------------------------------------
     PickTable            TFileListBox          (Predefined component class)
     --------------------------------------------------------------------------
     Print File           Append                Opens an existing file for
                                                appending.
     --------------------------------------------------------------------------
     PrivDir              Session.PrivateDir    Session is a global variable of
                                                type TSession.
     --------------------------------------------------------------------------
     Private              Var                   (Pascal reserved word)
     --------------------------------------------------------------------------
     Proc                 Function              (Pascal reserved word)
                          Procedure             (Pascal reserved word)
     --------------------------------------------------------------------------
     PushButton           TBitBtn               (Predefined component class)


     Compilation (c) 1995, Craig L. Jones.  All rights reserved.


      7/05/95             PAL to Delphi Reference Chart            Page  10


     [PAL]                [Delphi]              [Description]
     --------------------------------------------------------------------------
     PushButton           TButton               (Predefined component class)
     --------------------------------------------------------------------------
     Query                TBatchMove            (Predefined component class)
                          TQuery                (Predefined component class)
     --------------------------------------------------------------------------
     Quit                 Halt                  Stops program execution and
                                                returns to the operating
                                                system.
                          Raise                 (Pascal reserved word)
                          RunError              Stops program execution.
     --------------------------------------------------------------------------
     QuitLoop             Break                 Terminates a for, while, or
                                                repeat statement.
                          Exit                  Exits immediately from the
                                                current block.
     --------------------------------------------------------------------------
     RadioButtons         TRadioButton          (Predefined component class)
                          TDBRadioGroup         (Predefined component class)
                          TRadioGroup           (Predefined component class)
     --------------------------------------------------------------------------
     Rand                 Random                Returns a random number.
                          Randomize             Initializes the built-in random
                                                number generator with a random
                                                value (obtained from the system
                                                clock).
     --------------------------------------------------------------------------
     Release Vars         Free                  Destroys an object instance.
                          FreeMem               Disposes a dynamic variable of
                                                a given size.
                          StrDispose            Disposes a string on a heap.
     --------------------------------------------------------------------------
     Rename               Rename                Renames an external file.
                          RenameFile            Renames a file.
     --------------------------------------------------------------------------
     Return               Result :=
     --------------------------------------------------------------------------
     Retval               IOResult              Returns the status of the last
                                                I/O operation performed.
     --------------------------------------------------------------------------
     Round                Round                 Rounds a real-type value to an
                                                Integer-type value.
     --------------------------------------------------------------------------
     Row                  WhereX                Returns the X coordinate of the
                                                current cursor location.
     --------------------------------------------------------------------------
     Run "DEL"            Erase                 Erases an external file.
     --------------------------------------------------------------------------
     Run "MD"             MkDir                 Creates a subdirectory.
     --------------------------------------------------------------------------
     Run "RD"             RmDir                 Removes an empty subdirectory.


     Compilation (c) 1995, Craig L. Jones.  All rights reserved.


      7/05/95             PAL to Delphi Reference Chart            Page  11


     [PAL]                [Delphi]              [Description]
     --------------------------------------------------------------------------
     Run "Rename"         RenameFile            Renames a file.
     --------------------------------------------------------------------------
     S [type]             Byte
                          Integer
                          LongInt
                          ShortInt
                          Word
     --------------------------------------------------------------------------
     SaveTables           Flush                 Flushes the buffer of a text
                                                file open for output.
     --------------------------------------------------------------------------
     SaveVars             {$Y}                  Symbol Reference Information
                                                (Pascal compiler directive)
     --------------------------------------------------------------------------
     ScrollBar            TScrollBar            (Predefined component class)
     --------------------------------------------------------------------------
     Scrollpress          ScrollTo              Scrolls the CRT window to show
                                                a screen location.
     --------------------------------------------------------------------------
     Search               Ord                   Returns the ordinal number of
                                                an ordinal-type value.
                          Pos                   Searches for a substring in a
                                                string.
                          StrPos                Returns a pointer to the first
                                                occurrence of a string in
                                                another string.
                          StrRScan              Returns a pointer to the last
                                                occurrence of a character in a
                                                string.
                          StrScan               Returns a pointer to the first
                                                occurrence of a character in a
                                                string.
     --------------------------------------------------------------------------
     Searchfrom           Pos                   Searches for a substring in a
                                                string.
     --------------------------------------------------------------------------
     SetDir               ChDir                 Changes the current directory.
     --------------------------------------------------------------------------
     ShowDialog           TForm                 (Predefined component class)
                          TNotebook             (Predefined component class)
     --------------------------------------------------------------------------
     ShowFiles            TDirectoryListBox     (Predefined component class)
     --------------------------------------------------------------------------
     ShowMenu             TMainMenu             (Predefined component class)
                          TMenuItem             (Predefined component class)
     --------------------------------------------------------------------------
     Sin                  Sin                   Returns the sine of the
                                                argument.
     --------------------------------------------------------------------------
     Single               TBevel                (Predefined component class)


     Compilation (c) 1995, Craig L. Jones.  All rights reserved.


      7/05/95             PAL to Delphi Reference Chart            Page  12


     [PAL]                [Delphi]              [Description]
     --------------------------------------------------------------------------
     Space [command line  {$D}                  Debug Information (Pascal
     switch]                                    compiler directive)
     --------------------------------------------------------------------------
     Speedbar             TSpeedButton          (Predefined component class)
     --------------------------------------------------------------------------
     Sqrt                 Sqrt                  Returns the square root of the
                                                argument.
     --------------------------------------------------------------------------
     StrVal               DateToStr             Converts a value from date
                                                format to a string.
                          FloatToStr            Converts the floating-point
                                                value to its string
                                                representation.
                          FloatToStrF           Converts the floating-point
                                                value to its string
                                                representation.
                          FloatToText           Converts the given floating-
                                                point value to its decimal
                                                representation.
                          IntToStr              Converts an integer to a string
                          Str                   Converts a numeric value to a
                                                string.
     --------------------------------------------------------------------------
     Strval               IntToStr
     --------------------------------------------------------------------------
     SubStr               Copy                  Returns a substring of a
                                                string.
                          Delete                Deletes a substring from a
                                                string.
                          Insert                Inserts a substring into a
                                                string.
     --------------------------------------------------------------------------
     Switch               Case...Of             (Pascal reserved word)
     --------------------------------------------------------------------------
     TableView            TDrawGrid             (Predefined component class)
                          TDBGrid               (Predefined component class)
     --------------------------------------------------------------------------
     Then                 If...Then             (Pascal reserved word)
                          Then                  (Pascal reserved word)
     --------------------------------------------------------------------------
     Ticks                TTimer                (Predefined component class)
     --------------------------------------------------------------------------
     Time                 Now                   Returns the current date and
                                                time.
                          Time                  Returns the current time.
     --------------------------------------------------------------------------
     Today                Date                  Returns the current date.
                          Now                   Returns the current date and
                                                time.



     Compilation (c) 1995, Craig L. Jones.  All rights reserved.


      7/05/95             PAL to Delphi Reference Chart            Page  13


     [PAL]                [Delphi]              [Description]
     --------------------------------------------------------------------------
     USDate               DateToStr             Converts a value from date
                                                format to a string.
     --------------------------------------------------------------------------
     Upper                AnsiUpperCase         Converts characters to
                                                uppercase.
                          StrUpper              Converts a string to upper
                                                case.
                          UpCase                Converts a character to
                                                uppercase.
                          UpperCase             Uppercases the given string.
     --------------------------------------------------------------------------
     VarVal               IsValidIdent          Returns true if the given
                                                string is a valid identifier.
     --------------------------------------------------------------------------
     Version              {$IFDEF VERxx}
     --------------------------------------------------------------------------
     View                 TDatabase             (Predefined component class)
                          TDataSource           (Predefined component class)
     --------------------------------------------------------------------------
     While                Do                    (Pascal reserved word)
                          Do...Until            (Pascal reserved word)
                          Repeat                (Pascal reserved word)
                          While                 (Pascal reserved word)
     --------------------------------------------------------------------------
     WinClose             DoneWinCrt            Destroys the CRT window if it
                                                has not already been destroyed.
     --------------------------------------------------------------------------
     Window Close         DoneWinCrt            Destroys the CRT window if it
                                                has not already been destroyed.
     --------------------------------------------------------------------------
     Window Create        AssignCrt             Associates a text file with a
                                                CRT window.
                          InitWinCrt            Creates the CRT window if it
                                                has not already been created.
     --------------------------------------------------------------------------
     Year                 DecodeDate            Decodes the specified date
















     Compilation (c) 1995, Craig L. Jones.  All rights reserved.

