Re: [fpc-pascal]Hex values

2004-04-23 Thread Nikolay Nikolov
Marco van de Voort wrote: oct: &088; // 1.9+ only bin: %101010; // 1.9+ only These also work for 1.0.10. ___ fpc-pascal maillist - [EMAIL PROTECTED] http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal]Hex values

2004-04-22 Thread Marco van de Voort
> How do you represent Hex values in FPX, I now I can use #141 for example > using the ASCII value of the Hex characted converted ahead of time, but is > there a way to send the Hex values like 0x70 for example? hex: $45; oct: &088; // 1.9+ only bin: %101010; // 1.9+ only char: #23; or chr

[fpc-pascal]Hex values

2004-04-22 Thread Paul Aviles
How do you represent Hex values in FPX, I now I can use #141 for example using the ASCII value of the Hex characted converted ahead of time, but is there a way to send the Hex values like 0x70 for example? Thanks ___ fpc-pascal maillist - [EMAIL PROT