Re: [fpc-pascal] Brook Framework and Template Engines

2014-12-13 Thread luiz americo pereira camara
2014-12-12 10:14 GMT-03:00 silvioprog : > > On Fri, Nov 14, 2014 at 11:18 AM, Fabrício Srdic > wrote: > >> Hello, >> >> What's the current status of the Brook Server Pages project? >> >> What's the recommended template engine to use with Brook Framework? >> >> Best regards >> > Hello, > > Just wai

Re: [fpc-pascal] How can you convert an enum value to string?

2014-12-13 Thread Howard Page-Clark
On 13/12/2014 02:50, silvioprog wrote: ... for i := 1 to c do getenumname(typeinfo(tenum), integer(en)); ... I think for a fairer comparison with WriteStr the compared GetEnumName call should be ... for i := 1 to c do s := GetEnumName(TypeInfo(tenum), integer(en)); ... Mind you, on m