Re: [Lazarus] ask for help

2013-06-10 Thread Luk Vandelaer
Op 10/06/2013 11:03, Ryszard Michon'ski schreef: SZCZEGOLY.AfterInsert:=SZCZEGOLYAfterInsert; should be SZCZEGOLY.AfterInsert:=@SZCZEGOLYAfterInsert; Assigning of events has to be with address operator in Free Pascal. Luk -- ___ Lazarus

Re: [Lazarus] SQL select problem

2012-11-20 Thread Luk Vandelaer
You don't leave the while loop when you found the correct user. For each record there will be a showstring call processed. It should be something like: var found: boolean; found := false; while not SQLQueryMySQL.EOF and not found do begin //Retrieved data fields and

Re: [Lazarus] dtm_maker project compile errors with TList code.

2011-05-06 Thread Luk Vandelaer
Your constructor should be something like constructor TIsland.Create(const ATerrain : Terrain_type; const ATerrain_char : char; const Adescription : description_type; const Ax, Ay, Alocation_number : integer; const Aexits : exit_type ); begin // Save the

Re: [Lazarus] Lazarus web site not accessible

2010-07-28 Thread Luk Vandelaer
On Wednesday 28 July 2010 08:59:39 Robin Hoo wrote: Hi, All It's ok for wiki now, but http://www.lazarus.freepascal.org/ still can not access. Freepascal.org is back online. Luk Vandelaer -- ___ Lazarus mailing list Lazarus

Re: [Lazarus] [fpc-pascal] Persistent blocks in Lazarus

2009-07-28 Thread Luk Vandelaer
for column blocks, Ctrl-O + K for character blocks (default) Ctrl-O + L for line blocks Luk Vandelaer -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus