Re: Re[2]: [lazarus] Re: list of all components for DB

2005-12-16 Thread Joost van der Sluis
On Thu, 2005-12-15 at 19:19 +0700, Andi Wangsadijaya wrote: Is there components for firebird which can display and edit directly in the DBGrid or something else, like TDataset in Delphi? I've tried JV UIB, Fblib, Interbase, SQLDB but none of these components can act like

Re: [lazarus] Snapshot and latest subversion very unstable

2005-12-16 Thread Joost van der Sluis
The latest snapshot for win32 and the latest subversion for Linux seam to be the definition of what I would call unstable. I'm also experiencing problems. I think the problems are related to the codetools... -- Met vriendelijke groeten, Joost van der Sluis CNOC Informatiesystemen en

Re: [lazarus] Snapshot and latest subversion very unstable

2005-12-16 Thread Mattias Gaertner
On Fri, 16 Dec 2005 11:32:52 +0100 Joost van der Sluis [EMAIL PROTECTED] wrote: The latest snapshot for win32 and the latest subversion for Linux seam to be the definition of what I would call unstable. I'm also experiencing problems. I think the problems are related to the codetools...

Re: [lazarus] Snapshot and latest subversion very unstable

2005-12-16 Thread bouquinique
Vincent Snijders a écrit : Joost van der Sluis wrote: The latest snapshot for win32 and the latest subversion for Linux seam to be the definition of what I would call unstable. I'm also experiencing problems. I think the problems are related to the codetools... codetools use a lot of

Re: [lazarus] Snapshot and latest subversion very unstable

2005-12-16 Thread Joost van der Sluis
I'm also experiencing problems. I think the problems are related to the codetools... codetools use a lot of ansistrings and is a heavy user of the memory manager. I suspected the codetools since ctrl-click doesn't work anymore. IT can't fnd the sysutils unit. If you do a rescan-fpc-source

Re: [lazarus] Snapshot and latest subversion very unstable

2005-12-16 Thread Mattias Gaertner
On Fri, 16 Dec 2005 12:05:08 +0100 Joost van der Sluis [EMAIL PROTECTED] wrote: I'm also experiencing problems. I think the problems are related to the codetools... codetools use a lot of ansistrings and is a heavy user of the memory manager. I suspected the codetools since

[lazarus] Re: Can't rebuild lazarus

2005-12-16 Thread Felipe Monteiro de Carvalho
Andrea Mauri wrote: I also tried to rebuild lazarus but it gives me 1511 errors during make. I tried /make clean all /and it gives me 1511 error. A lot of command syntax error. Do you have Delphi installed? Looks like you are using Borland Make to compile Lazarus. Type just make on the

Re: [lazarus] Re: Can't rebuild lazarus

2005-12-16 Thread Andrea Mauri
Thanks, I set the correct path to the make file for FPC. Now everything works. a. Felipe Monteiro de Carvalho wrote: Andrea Mauri wrote: I also tried to rebuild lazarus but it gives me 1511 errors during make. I tried /make clean all /and it gives me 1511 error. A lot of command syntax

Re: [lazarus] Re: Snapshot and latest subversion very unstable

2005-12-16 Thread Mattias Gaertner
On Fri, 16 Dec 2005 10:13:06 -0200 Felipe Monteiro de Carvalho [EMAIL PROTECTED] wrote: Mattias Gaertner wrote: No. The current 2.0.3 does not work. For example: The unit 'gl' calls FreeLibrary(0). Formerly this worked, now it crashes. Ok, to clear where the problem is, either FPC

Re: [lazarus] Snapshot and latest subversion very unstable

2005-12-16 Thread Mattias Gaertner
On Fri, 16 Dec 2005 13:18:11 +0100 Joost van der Sluis [EMAIL PROTECTED] wrote: On Fri, 2005-12-16 at 13:10 +0100, Mattias Gaertner wrote: I'm also experiencing problems. I think the problems are related to the codetools... codetools use a lot of ansistrings and is a

Re: [lazarus] Snapshot and latest subversion very unstable

2005-12-16 Thread Marc Weustink
Mattias Gaertner wrote: On Fri, 16 Dec 2005 13:18:11 +0100 Joost van der Sluis [EMAIL PROTECTED] wrote: On Fri, 2005-12-16 at 13:10 +0100, Mattias Gaertner wrote: I'm also experiencing problems. I think the problems are related to the codetools... codetools use a lot of ansistrings and

Re: [lazarus] Snapshot and latest subversion very unstable

2005-12-16 Thread Joost van der Sluis
On Fri, 2005-12-16 at 13:35 +0100, Mattias Gaertner wrote: I'm also experiencing problems. I think the problems are related to the codetools... codetools use a lot of ansistrings and is a heavy user of the memory manager. I suspected the codetools since

Re: [lazarus] Snapshot and latest subversion very unstable

2005-12-16 Thread Mattias Gaertner
On Fri, 16 Dec 2005 16:08:33 +0100 Joost van der Sluis [EMAIL PROTECTED] wrote: On Fri, 2005-12-16 at 13:35 +0100, Mattias Gaertner wrote: I'm also experiencing problems. I think the problems are related to the codetools... codetools use a lot of ansistrings and is

[lazarus] Re: Snapshot and latest subversion very unstable

2005-12-16 Thread Felipe Monteiro de Carvalho
Do you mean 8255 works and 8257 not? Then it is the addition of synchronize support for the gtk interface. The errors also appear on gtk, but are much, much worse on Windows. start Lazarus and then close without clicking anything it is enougth on the latest snapshot to raise 2 exception

[lazarus] How c++ bindings work

2005-12-16 Thread Felipe Monteiro de Carvalho
Hi, I'm trying to understand the c++ bindings for KDE API to create a systray icon on KDE. I find some .h files defining some classes, but no information about where the classes are implemented, and worse, no information about how they connect to KDE. I mean, I know no other method for a

Re: [lazarus] How c++ bindings work

2005-12-16 Thread dannym
Hi, Am Freitag, den 16.12.2005, 18:34 -0200 schrieb Felipe Monteiro de Carvalho: Hi, I'm trying to understand the c++ bindings for KDE API to create a systray icon on KDE. I find some .h files defining some classes, but no The systray icon stuff is standardized, but (older?) kde deviates

Re: [lazarus] How c++ bindings work

2005-12-16 Thread dannym
Hi, [...] hmm, just to get you a head start: Most of the properties mentioned in the standard are those of a normal window, so you should just start with a normal window (TForm...) and work your way from there... (_NET_WM_NAME, WM_CLASS and _NET_WM_ICON are normal window stuff, so no need to

Re: [lazarus] How c++ bindings work

2005-12-16 Thread Andrew Haines
dannym wrote: Hi, [...] hmm, just to get you a head start: Most of the properties mentioned in the standard are those of a normal window, so you should just start with a normal window (TForm...) and work your way from there... (_NET_WM_NAME, WM_CLASS and _NET_WM_ICON are normal

[lazarus] Re: How c++ bindings work

2005-12-16 Thread Felipe Monteiro de Carvalho
Andrew Haines wrote: This link might be helpful as well ;) http://cvs.sourceforge.net/viewcvs.py/lazarus-ccr/gtktrayicon/ Uau! This could have saved me many hours... I cannot see this package on lazarus-crr for download. http://sourceforge.net/project/showfiles.php?group_id=92177 The only

Re[4]: [lazarus] Re: list of all components for DB

2005-12-16 Thread Andi Wangsadijaya
Hello Joost, On 16 Desember 2005, 17:30:16, You wrote: When you are using SQLDB, set ReadOnly to false. If you then use a 'simple' query like 'select * from table' then it should wordk. (fpc 2.0.2 and above) Thanks, i have tried and its work. But, commonly I use a complex query. So, I