Re: [fpc-pascal] Re: source code UTF8 with BOM problems ?

2010-03-22 Thread Mattias Gaertner
On Mon, 22 Mar 2010 12:43:43 -0500 Luis Fernando Del Aguila Mejía wrote: > Another question. > For write programs in console or mode text. > For the source code. What charsets is appropriate to use with Free Pascal? > > a) ASCII (7 bits) > b) iso-8859-1 > c) Windows-1252 > d) IBM 850 > e) Unico

[fpc-pascal] Re: source code UTF8 with BOM problems ?

2010-03-22 Thread Luis Fernando Del Aguila Mejía
Another question. For write programs in console or mode text. For the source code. What charsets is appropriate to use with Free Pascal? a) ASCII (7 bits) b) iso-8859-1 c) Windows-1252 d) IBM 850 e) Unicode-UTF8 if your answer is (a), then : What disadvantages does use the Unicode-UTF8? ___

Re: [fpc-pascal] constructor as procvar

2010-03-22 Thread Michael Van Canneyt
On Sat, 20 Mar 2010, David Emerson wrote: How can I obtain a class type variable from an instance? I want to create a second instance of the same descendant class (via the constructor, which will take some parameters and make the new instance unique) Try using Instance.ClassType. Something l