by David Mitchell >> Thu, 6 May 1999 2:11:43 GMT
Here's a tip I discovered when playing around with binary files:
If you have a character like so:
vars
chr : Character;
and you say :
i := chr.Integer;
then i gets the ASCII value for chr. This also works the other way. So if i is 65 then
chr := i.Character;
makes chr = 'A'.
Neats huh?
David.