Re[8]: [fpc-pascal] array & record output/input

2010-06-03 Thread José Mejuto
Hello FPC-Pascal, Thursday, June 3, 2010, 11:33:24 AM, you wrote: MvdV> There are some minor issues on OS X (with _some_ components only), but for MvdV> the rest to my best knowledge they work. They are great news to me :) Nice to know it, thank you. -- Best regards, José ___

Re: Re[6]: [fpc-pascal] array & record output/input

2010-06-03 Thread Marco van de Voort
In our previous episode, Jos? Mejuto said: [ Charset ISO-8859-15 unsupported, converting... ] > Hello FPC-Pascal, > > Thursday, June 3, 2010, 9:37:46 AM, you wrote: > > MvdV> Be careful here. This applies to Indy9, but Indy10 has FPC > compatibility and > MvdV> is way more portable. There is no

Re[6]: [fpc-pascal] array & record output/input

2010-06-03 Thread José Mejuto
Hello FPC-Pascal, Thursday, June 3, 2010, 9:37:46 AM, you wrote: MvdV> Be careful here. This applies to Indy9, but Indy10 has FPC compatibility and MvdV> is way more portable. There is no "Indy", the various major versions are totally MvdV> different codebases. It was Indy 10, but more than

Re: Re[4]: [fpc-pascal] array & record output/input

2010-06-03 Thread Marco van de Voort
In our previous episode, Jos? Mejuto said: > > >> That's not a matter of support, > V> maybe a poorly placed moan there... was getting annoyed with Indy/XML not > V> doing what I wanted. > V> i gave up trying to get XPath and XML Namespaces to work recently... > whereas > V> ive had XPath+Namesp

Re[4]: [fpc-pascal] array & record output/input

2010-06-02 Thread José Mejuto
Hello FPC-Pascal, Wednesday, June 2, 2010, 11:12:33 PM, you wrote: >> That's not a matter of support, V> maybe a poorly placed moan there... was getting annoyed with Indy/XML not V> doing what I wanted. V> i gave up trying to get XPath and XML Namespaces to work recently... whereas V> ive had XP

Re: Re[2]: [fpc-pascal] array & record output/input

2010-06-02 Thread Vannus
On 2 June 2010 18:56, José Mejuto wrote: > Hello FPC-Pascal, > > Wednesday, June 2, 2010, 2:56:29 PM, you wrote: > > V> ooh. php has 'print_r' for printing arrays/objects - an equivalent > V> ArrayToStr would be handy to have in Pascal. while pascal is my > favourite > V> language, I'm finding it

Re[2]: [fpc-pascal] array & record output/input

2010-06-02 Thread José Mejuto
Hello FPC-Pascal, Wednesday, June 2, 2010, 2:56:29 PM, you wrote: V> ooh. php has 'print_r' for printing arrays/objects - an equivalent V> ArrayToStr would be handy to have in Pascal. while pascal is my favourite V> language, I'm finding it poorly supported compared with php :( That's not a matt

Re: [fpc-pascal] array & record output/input

2010-06-02 Thread Vannus
On 2 June 2010 11:34, spir wrote: > Hello, > > > Is there a (builtin, simple) way to output the content of an array or of a > record. Something like arrayToStr / recordToStr, that would return a normal > form similar to the literal notation used for intialisation? If no, is there > a way to write

Re: [fpc-pascal] array & record output/input

2010-06-02 Thread Graeme Geldenhuys
Op 2010-06-02 12:34, spir het geskryf: > no, is there a way to write custom funcs for this purpose (meaning > access at runtime to types of items/fields). I constantly need such a > feature. writeln(recordTostr(aPosition)) // --> (x:1 ; y:2 ; z:3) If you used tiOPF based objects, then I could hav

[fpc-pascal] array & record output/input

2010-06-02 Thread spir
Hello, Is there a (builtin, simple) way to output the content of an array or of a record. Something like arrayToStr / recordToStr, that would return a normal form similar to the literal notation used for intialisation? If no, is there a way to write custom funcs for this purpose (meaning acces