Re: [fpc-pascal] tstringlist.savetostream

2010-03-15 Thread Zaher Dirkey
On Tue, Mar 16, 2010 at 3:53 AM, Terry A. Haimann wrote: > After running tstringlist.savetostream how can I make sure that the buffer > has been flushed and data sent successfully? > > That depend on the stream you passed to TStringList.SaveToStream -- Zaher Dirkey _

[fpc-pascal] tstringlist.savetostream

2010-03-15 Thread Terry A. Haimann
After running tstringlist.savetostream how can I make sure that the buffer has been flushed and data sent successfully? Thx ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

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

2010-03-15 Thread Luis Fernando Del Aguila Mejía
Hello, the problem is only linux. The following source code uses UTF8 without BOM, http://www.conoce3000.com/Ejemplo01.pp the compiler compiles ok and the program displays the message in Unicode UTF8 ok The following source code uses UTF8 with BOM http://www.conoce3000.com/Ejemplo02.pp the c

Re: [fpc-pascal] fpGUI Toolkit v0.7-rc1 for FPC 2.4

2010-03-15 Thread Jorge Aldo G. de F. Junior
"I'm maintaining FPC-bindings for DFB. Right now, they work with the 1.4 line of DFB binaries only. If anyone has a need for 1.2 bindings (which is the version that ships with most GNU/Linux distributions these days), I'd actually provide such bindings. So, if anyone is seriously interested, please

[fpc-pascal] error on compilation

2010-03-15 Thread Martín Marqués
When I try to compile on my laptop (fedora on a AMD64) with fp I get: fatal: Can't find unit system used by pruebacomentarios What's wrong here? -- Martín Marqués select 'martin.marques' || '@' || 'gmail.com' DBA, Programador, Administrador ___ fpc-pa

Re: [fpc-pascal] fpGUI Toolkit on WinCE

2010-03-15 Thread Paul Breneman
Hi Adrian, Hi, this is the first time I looked at fpGUI. Very nice work ! I tried to cross compile some examples for WinCE and it worked so far - looks like my search is over and I found a nice little GUI framework for that platform. I was not satisfied with LCL (much too big), KOL (too weird)

Re: [fpc-pascal] fpGUI Toolkit v0.7-rc1 for FPC 2.4

2010-03-15 Thread Adrian Veith
Am 15.03.2010 16:38, schrieb Adrian Veith: > If it makes sense or not - I get the same error in delphi mode. > my error - forget it Adrian ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-

Re: [fpc-pascal] fpGUI Toolkit v0.7-rc1 for FPC 2.4

2010-03-15 Thread Adrian Veith
Am 15.03.2010 16:23, schrieb Jonas Maebe: > > On 15 Mar 2010, at 16:17, Adrian Veith wrote: > >> when compiling uidesigner with actual fpc from svn it fails with >> duplicate identifier "unitname" in vfdfile.pas. It seems to be a name >> clash with the new class procedure unitname in TObject. > > h

Re: [fpc-pascal] fpGUI Toolkit v0.7-rc1 for FPC 2.4

2010-03-15 Thread Jonas Maebe
On 15 Mar 2010, at 16:17, Adrian Veith wrote: when compiling uidesigner with actual fpc from svn it fails with duplicate identifier "unitname" in vfdfile.pas. It seems to be a name clash with the new class procedure unitname in TObject. http://wiki.freepascal.org/User_Changes_Trunk#TObject_cl

Re: [fpc-pascal] fpGUI Toolkit v0.7-rc1 for FPC 2.4

2010-03-15 Thread Graeme Geldenhuys
Adrian Veith het geskryf: > > when compiling uidesigner with actual fpc from svn it fails with > duplicate identifier "unitname" in vfdfile.pas. It seems to be a name > clash with the new class procedure unitname in TObject. I don't know why As rule of thumb, I never test with unstable FPC (trun

Re: [fpc-pascal] fpGUI Toolkit on WinCE

2010-03-15 Thread Graeme Geldenhuys
Adrian Veith het geskryf: > > One thing I found is, that when a fpGUI application is running on my > WinCE phone (even when it is in the background), the phone will slow > down dramatically. I guess there is an event loop which is too busy - > any idea ? WinCE is experimental, so expect some issu

Re: [fpc-pascal] fpGUI Toolkit v0.7-rc1 for FPC 2.4

2010-03-15 Thread Adrian Veith
Am 09.03.2010 14:16, schrieb Graeme Geldenhuys: > fpGUI v0.7-rc1 is available > when compiling uidesigner with actual fpc from svn it fails with duplicate identifier "unitname" in vfdfile.pas. It seems to be a name clash with the new class procedure unitname in TObject. I don't know why fpc rai

[fpc-pascal] fpGUI Toolkit on WinCE

2010-03-15 Thread Adrian Veith
Am 09.03.2010 14:16, schrieb Graeme Geldenhuys: > fpGUI v0.7-rc1 is available > --- > Hi, this is the first time I looked at fpGUI. Very nice work ! I tried to cross compile some examples for WinCE and it worked so far - looks like my search is over and I found a nice li

Re: [fpc-pascal] Error: Illegal qualifier in converting Delphi unit

2010-03-15 Thread Marco van de Voort
In our previous episode, Howard Page-Clark said: > >> result := TranslationTable[Index]^.CharsetID > >> > >> Howard > > No secret - just that fpc requires stricter syntax than Delphi, even in > {$mode Delphi}. The property TranslationTable is an array property > declared as a pointer (PTransla

Re: [fpc-pascal] Error: Illegal qualifier in converting Delphi unit

2010-03-15 Thread Howard Page-Clark
On 14/3/10 11:52, Frank Church wrote: Your suggestion worked - what is the secret? Does the array[0..0 have some relevance here?] On 14 March 2010 23:01, Howard Page-Clark wrote: On 14/3/10 6:11, Frank Church wrote: Hi guys, I am trying to compile the TVersionInfo component by Anders Meland