[Lazarus] Some useless repository statistics - just for fun

2009-07-15 Thread Graeme Geldenhuys
While enjoying my cup of coffee on this freezing cold winter's morning, I thought I would play around in the Lazarus repository. I am situated in the GMT+2 time zone, so you can adjust the time statistics to fit your needs. All statistics are generated using only the last six months, which

Re: [Lazarus] Some useless repository statistics - just for fun

2009-07-15 Thread Graeme Geldenhuys
Paul Ishenin wrote: No. Martin touches synedit mostly. My apologies to Martin then. :) Thanks to _all_ for the excellent work in SynEdit and Lazarus in general - it's a pleasure working in Lazarus IDE now. Regards, - Graeme - -- fpGUI Toolkit - a cross-platform GUI toolkit using Free

Re: [Lazarus] SqLite

2009-07-15 Thread Joost van der Sluis
Op maandag 13-07-2009 om 14:40 uur [tijdzone +0100], schreef Henry Vermaak: You can use sqlite3dyn unit, then use TryInitialiseSqlite, InitialiseSQLite, ReleaseSQLite funcs. See fpc sources for more info. I don't know how to do this with sqldb, though. sqldb already uses the sqlite3dyn unit.

Re: [Lazarus] Sockets

2009-07-15 Thread Marc Weustink
dayat wrote: Hi, I'm newbie in sockets programming. I have code like: if not Accept(S, FromName, Sin, Sout) then perror('Server accept: '+FromName); The FromName variable is string. And when the Accept() function executed I got the error like: project1.lpr(31,28) Error: Call by var for

[Lazarus] TPageControl.OnChange

2009-07-15 Thread Michael Van Canneyt
Hi, In Delphi, TPageControl.OnChange is triggered whenever the user clicks on a tab and the tab was changed. In Lazarus this does nothing. Lazarus does have OnPageChange, which is triggered whenever the user clicks on a tab and the tab was changed. Is there a reason for this incompatibility ?

Re: [Lazarus] startlazarus and memory consumption

2009-07-15 Thread Marco van de Voort
On Tue, Jul 14, 2009 at 08:54:35PM +0200, Graeme Geldenhuys wrote: Vincent Snijders wrote: It is to show the splash screen as soon as possible, not to wait until yet another executable is loaded. Well then we are talking about milliseconds really. A splash screen is normally show just

Re: [Lazarus] SqLite

2009-07-15 Thread Henry Vermaak
2009/7/15 Joost van der Sluis jo...@cnoc.nl: Op maandag 13-07-2009 om 14:40 uur [tijdzone +0100], schreef Henry Vermaak: You can use sqlite3dyn unit, then use TryInitialiseSqlite, InitialiseSQLite, ReleaseSQLite funcs.  See fpc sources for more info.  I don't know how to do this with sqldb,

Re: [Lazarus] SqLite

2009-07-15 Thread waldo kitty
Joost van der Sluis wrote: Op maandag 13-07-2009 om 14:40 uur [tijdzone +0100], schreef Henry Vermaak: You can use sqlite3dyn unit, then use TryInitialiseSqlite, InitialiseSQLite, ReleaseSQLite funcs. See fpc sources for more info. I don't know how to do this with sqldb, though. sqldb

Re: [Lazarus] startlazarus and memory consumption

2009-07-15 Thread waldo kitty
Marco van de Voort wrote: On Tue, Jul 14, 2009 at 08:54:35PM +0200, Graeme Geldenhuys wrote: Vincent Snijders wrote: It is to show the splash screen as soon as possible, not to wait until yet another executable is loaded. Well then we are talking about milliseconds really. A splash screen is

Re: [Lazarus] SqLite

2009-07-15 Thread Henry Vermaak
2009/7/15 waldo kitty wkitt...@windstream.net: Joost van der Sluis wrote: Op maandag 13-07-2009 om 14:40 uur [tijdzone +0100], schreef Henry Vermaak: You can use sqlite3dyn unit, then use TryInitialiseSqlite, InitialiseSQLite, ReleaseSQLite funcs.  See fpc sources for more info.  I don't

Re: [Lazarus] startlazarus and memory consumption

2009-07-15 Thread Henry Vermaak
2009/7/15 waldo kitty wkitt...@windstream.net: ya know... i guess being so much old school as i am but i still fail to really understand why a splash screen is really necessary for much of anything... especially if it causes the app to consume a lot more memory than truly necessary... then

Re: [Lazarus] Some useless repository statistics - just for fun

2009-07-15 Thread Alexander Klenin
On Wed, Jul 15, 2009 at 18:16, Graeme Geldenhuysgrae...@opensoft.homeip.net wrote: Ask:  Mind if I ask who this is? :) Anyway, it's Tuesday for you.      8 Sat     10 Mon     11 Wed     13 Thu     23 Sun     33 Fri     36 Tue That's me. -- Alexander S. Klenin --

Re: [Lazarus] Sockets

2009-07-15 Thread dayat
Hello Marc, Thanks for your reply. I am only use one units, and it is the Sockets unit. The full code appear like: {---} program server; uses Sockets; var FromName: shortstring; Buffer: string[255];