TurboASCIIDialog - V1.00
Copyright  1999-2000 TurboTool Software, Inc.

Displays ASCII table dialog with Char/Dec/Hex values of each
character in addition to some notes.  The user can select one or
more characters and the final result will be returned as a character 
set and as a string.


Example:

  "Method"
  'Property'

  with TurboASCIIDialog do
    if "Execute" then
    begin
      'CharSetStr' will be set to 256 zeros and ones,
       if 'CharSetStr'[1]  = 1, then The null char is selected,
       if 'CharSetStr'[14] = 1, then The CR char is selected,
       if 'CharSetStr'[14] = 0, then The CR char is not selected,
       and so on.

       'CharSet' will return the selected char set, i.e.
       if #0 to #13 are selected, then the CharSet = [#0..#13]

       To select/unselect a group of chars, use Alt-S to start the
       block and Alt-E to end the block and start selecting.
    end;
