Re: New ListBox bug (was: New ListView bug in Lazarus)

2007-05-03 Thread Graeme Geldenhuys
Sorry, I reported the wrong component. It should have been TListBox and *not* TListView. See bug report: http://www.freepascal.org/mantis/view.php?id=8811 G. On 5/3/07, Graeme Geldenhuys <[EMAIL PROTECTED]> wrote: The ListView issue is still a bug though and was introduce somewhere after r10

[lazarus] Re: New ListView bug in Lazarus

2007-05-03 Thread Funky Beast
Graeme Geldenhuys wrote: OK, I tried the latest Lazarus (svn) on another Ubunut 7.04 pc and there was no problems with Lazarus locking up. It seems my current setup is a bit screwy! I'm having problems with Gnome and not bringing windows to the front (focus) when I click on them. I can only get

Re: [lazarus] Re: New ListView bug in Lazarus

2007-05-03 Thread Graeme Geldenhuys
On 5/3/07, Funky Beast <[EMAIL PROTECTED]> wrote: I'm no Linux junky, but i'm funky ;) I got no idea what I did I thought I would create a new user account and see if it has the same issue. Eliminating the problem of having some screwed up config files in the .gnome or .metacity diretor

[lazarus] SQLquery

2007-05-03 Thread Andrea Mauri
Dear all, I am using TSQLquery with a TIBconnection to an interbase database. I have a query like this: select T1.ID, T1.FIELD1, T2.ID, T2.FIELD1 from TABLE1 T1 left join TABLE2 T2 on T1.ID = T2.ID If I use this query with TSQL query I get an error duplicate fieldname ID Why? If I commit the sam

Re: [lazarus] SQLquery

2007-05-03 Thread Raistware
Hi Andrea, try this: select T1.ID as T1_ID, T1.FIELD1 as T1_FIELD1, T2.ID as T2_ID, T2.FIELD1 as T2_FIELD1 from TABLE1 T1 left join TABLE2 T2 on T1.ID = T2.ID It's not a bug, I think. Andrea Mauri escribió: Dear all, I am using TSQLquery with a TIBconnection to an interbase database. I have

Re: [lazarus] SQLquery

2007-05-03 Thread Andrea Mauri
Thanks. Now I don't get the previous error but another one: incorrect values within sqlda structure I will try to find a solution. a. Raistware wrote: Hi Andrea, try this: select T1.ID as T1_ID, T1.FIELD1 as T1_FIELD1, T2.ID as T2_ID, T2.FIELD1 as T2_FIELD1 from TABLE1 T1 left join TABLE2 T

Re: [lazarus] SQLquery

2007-05-03 Thread Bram Kuijvenhoven
Hi Andrea, Andrea Mauri wrote: I am using TSQLquery with a TIBconnection to an interbase database. I have a query like this: select T1.ID, T1.FIELD1, T2.ID, T2.FIELD1 from TABLE1 T1 left join TABLE2 T2 on T1.ID = T2.ID If I use this query with TSQL query I get an error duplicate fieldname ID W

Re: [lazarus] SQLquery

2007-05-03 Thread Andrea Mauri
thanks raistware, I solved my first problem with sqlquery. Now I get: incorrect values within sqlda structure I got this error only if the DB is not empty, if the DB is empty the query opens properly. I tested the same query with a SQL manager and using zeos components. In both cases it works

Re: [lazarus] WinCE onMouseMove patch

2007-05-03 Thread Patrick Chevalley
Thank you Vincent to apply this. Make me know how does it works, I use only the windows installers libraries (created by fpcfan and uploaded into the /cross/ ftp path) due to compilation issues... Now it work at least with the svn version. I also find more easy to use the precompiled installe

Re: [lazarus] SQLquery

2007-05-03 Thread Joost van der Sluis
Can you post the structure of those two tables. (Their create- statement?) On Thu, 2007-05-03 at 16:50 +0200, Andrea Mauri wrote: > incorrect values within sqlda structure > > I got this error only if the DB is not empty, if the DB is empty the > query opens properly. > I tested the same query w

Re: [lazarus] SQLquery

2007-05-03 Thread Marc Weustink
Bram Kuijvenhoven wrote: Hi Andrea, Andrea Mauri wrote: I am using TSQLquery with a TIBconnection to an interbase database. I have a query like this: select T1.ID, T1.FIELD1, T2.ID, T2.FIELD1 from TABLE1 T1 left join TABLE2 T2 on T1.ID = T2.ID If I use this query with TSQL query I get an erro