> This  has its good and bad points, BUT ofcourse in Delphi it pretty
> much has to me an integer etc.
> Does anyone have any ideas how this could be implemented in Delphi, OR
> if Delphi has a simlilar type of thing....

You could convert each string to its (7-bit ASCII-encoded) numerical
equivalent... eg
'Hello' = 72 101 108 108 111 
        = 1001000 1100101 1101100 1101100 1101111
        = 1001 0001 1001 0111 0110 0110 1100 1101 1110
        = $919766CDE

...but that would be cumbersome ;)

- Matt
---------------------------------------------------------------------------
    New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
                  Website: http://www.delphi.org.nz

Reply via email to