Re: [lazarus] Resizable forms

2006-03-14 Thread Yury Sidorov
From: Mattias Gaertner [EMAIL PROTECTED] Yury Sidorov [EMAIL PROTECTED] wrote: From: [EMAIL PROTECTED] Yury, On the wiki you propose to fix the size of dialogs that are simple they need to be internally resizable. What do you mean with that? Personally I find it convenient to resize all

[lazarus] Line end characters in Lazarus

2006-03-14 Thread Graeme Geldenhuys
Hi, I am working on a cross platform application between Windows and Linux, and source code lives in a Subversion repository (on a Linux server). Subversion now gave me a conflict, and has highlighted the whole file (every line) has chanced. I think this is due to the line end characters of

[lazarus] I need help with DB

2006-03-14 Thread johnf
What I am attempting to do is re-use a TPQConnection with each form. I'm thinking that it is best to have only one connection open to the database engine (postgres). I placed the TPQConnection in a datamodule. Below is some code from my login form: procedure TForm3.Button1Click(Sender:

Re: [lazarus] The Onlogin tpqconnection

2006-03-14 Thread Michael Van Canneyt
On Mon, 13 Mar 2006, johnf wrote: It appears that the OnLogin event does not work correctly in the TPQConnection. When I turn on the loginprompt= true nothing happens. Can some shed some light on the issue? This is a known issue. A login handler needs to be implemented. That is, a global

Re: [lazarus] The Onlogin tpqconnection

2006-03-14 Thread Matthijs Willemstein
On Tue, March 14, 2006 06:24, johnf wrote: It appears that the OnLogin event does not work correctly in the TPQConnection. When I turn on the loginprompt= true nothing happens. Can some shed some light on the issue? The loginprompt and the OnLogin event have not been implemeted yet, in

Re: [lazarus] I need help with DB

2006-03-14 Thread Michael Van Canneyt
On Mon, 13 Mar 2006, johnf wrote: What I am attempting to do is re-use a TPQConnection with each form. I'm thinking that it is best to have only one connection open to the database engine (postgres). I placed the TPQConnection in a datamodule. Below is some code from my login form:

[lazarus] Lazarus advocacy : Best App wrtitten in Lazarus

2006-03-14 Thread Alexander Todorov
Hi all, tell me what you think of the idea having a web site / page that shows different projects written in Lazarus and scoring them? Trolltech have done a similar page for Best Qt Application but I can't seem to find the link right now. IMO such web site is going to increase Lazarus popularity.

Re: [lazarus] Line end characters in Lazarus

2006-03-14 Thread Vincent Snijders
Graeme Geldenhuys wrote: Hi, I am working on a cross platform application between Windows and Linux, and source code lives in a Subversion repository (on a Linux server). Subversion now gave me a conflict, and has highlighted the whole file (every line) has chanced. I think this is due to the

[lazarus] ResourceString translation

2006-03-14 Thread Graeme Geldenhuys
Hi, How does Lazarus handle amendment to translations (resource strings)? More precisely, what happens after you have translated the .po file and compiled it to a .mo file and then amend the application again by adding new resourcesting values. How do you merge your existing translations, with

[lazarus] Determine Host Name of the remote computer by IP

2006-03-14 Thread Pēteris Bērzs-Bērziņš
Can someone give me tip how to determine Host name of the remoutre computer using IP adres. PBB _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at

Re: [lazarus] Lazarus advocacy : Best App wrtitten in Lazarus

2006-03-14 Thread Vincent Snijders
Alexander Todorov wrote: Hi all, tell me what you think of the idea having a web site / page that shows different projects written in Lazarus and scoring them? Trolltech have done a similar page for Best Qt Application but I can't seem to find the link right now. I think it would be good to

Re: [lazarus] Line end characters in Lazarus

2006-03-14 Thread Graeme Geldenhuys
I think this should be handled by the svn client. Make sure you have the set the line ending svn property of each file to native. Any idea how I do this? So what does Lazarus do with the line end characters when I edit a file in Lazarus under Linux, that a collegue last edited in Lazarus

RE: [lazarus] MySQL Connection

2006-03-14 Thread Panagiotis Sidiropoulos
Then you don't have mysql 4.1 on your client, but 4.0.24... (this can be different from the server version) You are right, I had client version 4.0. I did not know about server and client versions difference, thank you. As far as I know, this is not a valid SQL statement in MySQL. The MySQL

Re: [lazarus] Line end characters in Lazarus

2006-03-14 Thread Vincent Snijders
Graeme Geldenhuys wrote: I think this should be handled by the svn client. Make sure you have the set the line ending svn property of each file to native. Any idea how I do this? If you use TortoiseSVN, right click on the file, Properties - Subversion. Set svn:eol-style to native. See also

Re: [lazarus] Line end characters in Lazarus

2006-03-14 Thread Mattias Gaertner
On Tue, 14 Mar 2006 11:13:05 +0200 Graeme Geldenhuys [EMAIL PROTECTED] wrote: I think this should be handled by the svn client. Make sure you have the set the line ending svn property of each file to native. Any idea how I do this? So what does Lazarus do with the line end characters

Re: [lazarus] Line end characters in Lazarus

2006-03-14 Thread Graeme Geldenhuys
See also http://www.freepascal.org/wiki/index.php/SVN_Migration#Updating_and_commiting on how to add this automatically. I use the svn command line client, but the above link explains everything. Thanks! Regards, - Graeme -

Re: [lazarus] ResourceString translation

2006-03-14 Thread Mattias Gaertner
On Tue, 14 Mar 2006 11:06:17 +0200 Graeme Geldenhuys [EMAIL PROTECTED] wrote: Hi, How does Lazarus handle amendment to translations (resource strings)? More precisely, what happens after you have translated the .po file and compiled it to a .mo file and then amend the application again by

Re: [lazarus] Resizable forms

2006-03-14 Thread Yury Sidorov
From: Mattias Gaertner [EMAIL PROTECTED] AFAIK the form size and its content is not completely under control of the LCL. So only the most simplest forms can be made fixed size. Sure. If resizing do nothing useful for particular dialog, there is no need to allow user to resize it. I'm not

RE: [lazarus] Determine Host Name of the remote computer by IP

2006-03-14 Thread Pēteris Bērzs-Bērziņš
Fierst of all as i can see here http://community.freepascal.org:1/docs-html/rtl/unix/gethostname Gethostname gets hostname of the local mashine. Second Unit is called Unix so i gess it works anly in Linux/Unix. Is there some cross platform implemenation. PBB -Original Message- From:

Re: [lazarus] Resizable forms

2006-03-14 Thread Mattias Gaertner
On Tue, 14 Mar 2006 12:47:21 +0200 Yury Sidorov [EMAIL PROTECTED] wrote: From: Mattias Gaertner [EMAIL PROTECTED] AFAIK the form size and its content is not completely under control of the LCL. So only the most simplest forms can be made fixed size. Sure. If resizing do nothing useful

[lazarus] renaming units

2006-03-14 Thread Adrian Maier
Hello, When creating new units, Lazarus names them Unit1, Unit2, etc. How do i change the names of these units? If i modify at the top of the file unit Unit1; to unit MenuPef;, the compiler says: Error: Illegal unit name: MenuPef. I've also tried to rename the file, but this of course did

RE: [lazarus] renaming units

2006-03-14 Thread Pēteris Bērzs-Bērziņš
I gess u also should rename unit names in project file and all files witch is using touse untis. -Original Message- From: Adrian Maier [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 14, 2006 1:39 PM To: lazarus@miraclec.com Subject: [lazarus] renaming units Hello, When creating new

Re: [lazarus] Resizable forms

2006-03-14 Thread Yury Sidorov
From: Mattias Gaertner [EMAIL PROTECTED] On Tue, 14 Mar 2006 12:47:21 +0200 Yury Sidorov [EMAIL PROTECTED] wrote: From: Mattias Gaertner [EMAIL PROTECTED] AFAIK the form size and its content is not completely under control of the LCL. So only the most simplest forms can be made fixed size.

Re: [lazarus] renaming units

2006-03-14 Thread Adrian Maier
On 3/14/06, Pēteris Bērzs-Bērziņš [EMAIL PROTECTED] wrote: I gess u also should rename unit names in project file and all files witch is using touse untis. Indeed. I had to: - change the name of the unit at the top of the source file - exit Lazarus - rename the files (pas, lfm, lrs) - edit

Re: [lazarus] renaming units

2006-03-14 Thread dhkblaszyk
Adrian, Just save the file as another name. Then everything should be fine. Darius Hello, When creating new units, Lazarus names them Unit1, Unit2, etc. How do i change the names of these units? If i modify at the top of the file unit Unit1; to unit MenuPef;, the compiler says:

Re: [lazarus] renaming units

2006-03-14 Thread Mattias Gaertner
On Tue, 14 Mar 2006 13:38:57 +0200 Adrian Maier [EMAIL PROTECTED] wrote: Hello, When creating new units, Lazarus names them Unit1, Unit2, etc. How do i change the names of these units? Save the unit. The IDE opens a save dialog, where you can choose the name. Or use File - Save as

Re: [lazarus] renaming units

2006-03-14 Thread Adrian Maier
On 3/14/06, Mattias Gaertner [EMAIL PROTECTED] wrote: On Tue, 14 Mar 2006 13:38:57 +0200 Adrian Maier [EMAIL PROTECTED] wrote: How do i change the names of these units? Save the unit. The IDE opens a save dialog, where you can choose the name. That dialog appears only the first time , when

RE: [lazarus] Determine Host Name of the remote computer by IP

2006-03-14 Thread Michael Van Canneyt
On Tue, 14 Mar 2006, P?teris B?rzs-B?rzi?? wrote: Fierst of all as i can see here http://community.freepascal.org:1/docs-html/rtl/unix/gethostname Gethostname gets hostname of the local mashine. Second Unit is called Unix so i gess it works anly in Linux/Unix. Is there some cross platform

Re: [lazarus] Resizable forms

2006-03-14 Thread Mattias Gaertner
On Tue, 14 Mar 2006 13:54:14 +0200 Yury Sidorov [EMAIL PROTECTED] wrote: From: Mattias Gaertner [EMAIL PROTECTED] On Tue, 14 Mar 2006 12:47:21 +0200 Yury Sidorov [EMAIL PROTECTED] wrote: From: Mattias Gaertner [EMAIL PROTECTED] AFAIK the form size and its content is not completely

Re: [lazarus] Resizable forms

2006-03-14 Thread Vincent Snijders
Mattias Gaertner wrote: Yes. Instead of IFDEFs we should add an interface function to ask for the capabilities of the current interface. This way the IFDEFs do not to be checked every time an interface changed. I'm not sure, what capabilities are needed. In case of MessageDlg it would be

Re: [lazarus] Resizable forms

2006-03-14 Thread Mattias Gaertner
On Tue, 14 Mar 2006 13:43:52 +0100 Vincent Snijders [EMAIL PROTECTED] wrote: Mattias Gaertner wrote: Yes. Instead of IFDEFs we should add an interface function to ask for the capabilities of the current interface. This way the IFDEFs do not to be checked every time an interface changed.

Re: [lazarus] I need help with DB

2006-03-14 Thread johnf
On Tuesday 14 March 2006 00:38, Michael Van Canneyt wrote: On Mon, 13 Mar 2006, johnf wrote: What I am attempting to do is re-use a TPQConnection with each form. I'm thinking that it is best to have only one connection open to the database engine (postgres). I placed the TPQConnection in

Re: [lazarus] The Onlogin tpqconnection

2006-03-14 Thread johnf
On Tuesday 14 March 2006 00:34, Michael Van Canneyt wrote: On Mon, 13 Mar 2006, johnf wrote: It appears that the OnLogin event does not work correctly in the TPQConnection. When I turn on the loginprompt= true nothing happens. Can some shed some light on the issue? This is a known

Re: [lazarus] I need help with DB

2006-03-14 Thread johnf
On Tuesday 14 March 2006 07:48, Michael Van Canneyt wrote: On Tue, 14 Mar 2006, johnf wrote: You must set the database property of your SQLQuery1: self.SQLTransaction1.DataBase:= data3.DataModule1.PQConnection1; SQLQuery1.Database:=data3.DataModule1.PQConnection1; Michael.

Re: [lazarus] I need help with DB

2006-03-14 Thread Alexandre Leclerc
On 3/14/06, johnf [EMAIL PROTECTED] wrote: I'm so sorry Michael I don't understand what you mean by database component - did you mean the TPQConnection ? I set the database name in the TPQConnection (in login form). Yep, drop everything in a form, then make sure this works. Use the following

Re: [lazarus] I need help with DB

2006-03-14 Thread Michael Van Canneyt
On Tue, 14 Mar 2006, johnf wrote: On Tuesday 14 March 2006 07:48, Michael Van Canneyt wrote: On Tue, 14 Mar 2006, johnf wrote: You must set the database property of your SQLQuery1: self.SQLTransaction1.DataBase:= data3.DataModule1.PQConnection1;

Re: [lazarus] Resizable forms

2006-03-14 Thread Mattias Gaertner
On Tue, 14 Mar 2006 17:04:38 +0100 Vincent Snijders [EMAIL PROTECTED] wrote: Mattias Gaertner wrote: On Tue, 14 Mar 2006 13:43:52 +0100 Vincent Snijders [EMAIL PROTECTED] wrote: Mattias Gaertner wrote: Yes. Instead of IFDEFs we should add an interface function to ask for the

Re: [lazarus] Lazarus advocacy : Best App wrtitten in Lazarus

2006-03-14 Thread Alexander Todorov
On 3/14/06, Vincent Snijders [EMAIL PROTECTED] wrote: I think it would be good to have such a page. I wanted to start it here: http://wiki.lazarus.freepascal.org/index.php/Lazarus_Application_Gallery A (not-complete) list of candidates can be found here:

Re: [lazarus] I need help with DB

2006-03-14 Thread johnf
On Tuesday 14 March 2006 08:01, Michael Van Canneyt wrote: On Tue, 14 Mar 2006, johnf wrote: On Tuesday 14 March 2006 07:48, Michael Van Canneyt wrote: On Tue, 14 Mar 2006, johnf wrote: You must set the database property of your SQLQuery1: self.SQLTransaction1.DataBase:=

Re: [lazarus] I need help with DB

2006-03-14 Thread johnf
On Tuesday 14 March 2006 08:37, Michael Van Canneyt wrote: On Tue, 14 Mar 2006, johnf wrote: On Tuesday 14 March 2006 08:01, Michael Van Canneyt wrote: On Tue, 14 Mar 2006, johnf wrote: On Tuesday 14 March 2006 07:48, Michael Van Canneyt wrote: On Tue, 14 Mar 2006, johnf wrote: You must

Re: [lazarus] I need help with DB

2006-03-14 Thread johnf
On Tuesday 14 March 2006 08:37, Michael Van Canneyt wrote: On Tue, 14 Mar 2006, johnf wrote: On Tuesday 14 March 2006 08:01, Michael Van Canneyt wrote: On Tue, 14 Mar 2006, johnf wrote: On Tuesday 14 March 2006 07:48, Michael Van Canneyt wrote: On Tue, 14 Mar 2006, johnf wrote: You must

Re: [lazarus] I need help with DB

2006-03-14 Thread Alexandre Leclerc
On 3/14/06, Joost van der Sluis [EMAIL PROTECTED] wrote: On Tue, 2006-03-14 at 08:48 -0800, johnf wrote: BTW in the testing I did not set the properties in code but on the property sheet. Could this be something? Yes. That's why Michael gave you the code in his first reply. There is a

Re: [lazarus] Lazarus advocacy : Best App wrtitten in Lazarus

2006-03-14 Thread Alexsander Rosa
Maybe somethink like spreadfirefox.com: uselazarus.com or something like that, with a CMS inplace so the mantainers could easily edit/add pages. Alex2006/3/14, Alexander Todorov [EMAIL PROTECTED]: On 3/14/06, Vincent Snijders [EMAIL PROTECTED] wrote: I think it would be good to have such a page.

Re: [lazarus] patch for tComboBox

2006-03-14 Thread darekm
Mattias Gaertner wrote: On Mon, 13 Mar 2006 21:24:16 +0100 darekm [EMAIL PROTECTED] wrote: Attached patch cause that OnSelChange for tComboBox is fired only one time per click beside I enable some of trace event Darek You added again the lines: If (Lines nil) and (NumLines1)

Re: [lazarus] patch for tComboBox

2006-03-14 Thread darekM
Mattias Gaertner napisa(a): On Mon, 13 Mar 2006 22:18:56 +0100 darekM [EMAIL PROTECTED] wrote: Vincent Snijders napisa__(a): darekm wrote: Attached patch cause that OnSelChange for tComboBox is fired only one time per click beside I enable

[lazarus] patch fo tLabel

2006-03-14 Thread darekm
tLabel should care about WordWrap property attached patch repair it Darek Index: include/customlabel.inc === --- include/customlabel.inc (wersja 8935) +++ include/customlabel.inc (kopia robocza) @@ -365,7 +365,11 @@

Re: [lazarus] I need help with DB

2006-03-14 Thread johnf
On Tuesday 14 March 2006 09:10, Alexandre Leclerc wrote: On 3/14/06, Joost van der Sluis [EMAIL PROTECTED] wrote: On Tue, 2006-03-14 at 08:48 -0800, johnf wrote: BTW in the testing I did not set the properties in code but on the property sheet. Could this be something? Yes. That's

Re: [lazarus] Lazarus advocacy : Best App wrtitten in Lazarus

2006-03-14 Thread Vincent Snijders
Alexander Todorov wrote: On 3/14/06, Vincent Snijders [EMAIL PROTECTED] wrote: I think it would be good to have such a page. I wanted to start it here: http://wiki.lazarus.freepascal.org/index.php/Lazarus_Application_Gallery A (not-complete) list of candidates can be found here:

Re: [lazarus] Lazarus advocacy : Best App wrtitten in Lazarus

2006-03-14 Thread Darius Blaszijk
What's wrong with wiki's? I agree that the lazarus wiki looks a bit plain, but there are beutifull skins out there; http://meta.wikimedia.org/wiki/Gallery_of_user_styles with one of the better ones being http://meta.wikimedia.org/wiki/Image:Fraternalrelief.org.png We could add a skin to

[lazarus] before I go to far with this

2006-03-14 Thread johnf
Hi I am now attempt to populate a dbgrid with the data I get from my sqlquery1. As I scroll across the columns I get the following: TApplication.HandleException Abstract method called Stack trace: $081FA1DE $0820558C $082055D1 $082057A4 $082018B2 $0820F5E7

Re: [lazarus] I need help with DB

2006-03-14 Thread Michael Van Canneyt
On Tue, 14 Mar 2006, johnf wrote: On Tuesday 14 March 2006 09:10, Alexandre Leclerc wrote: On 3/14/06, Joost van der Sluis [EMAIL PROTECTED] wrote: On Tue, 2006-03-14 at 08:48 -0800, johnf wrote: BTW in the testing I did not set the properties in code but on the property sheet.

Re: [lazarus] before I go to far with this

2006-03-14 Thread Jesus Reyes
--- johnf [EMAIL PROTECTED] escribió: Hi I am now attempt to populate a dbgrid with the data I get from my sqlquery1. As I scroll across the columns I get the following: TApplication.HandleException Abstract method called Stack trace: $081FA1DE $0820558C $082055D1

[lazarus] call stack and debugging problems

2006-03-14 Thread anteusz
Hi! When I debug a file. That is , the debugger stops and I look at the call stack, I cannot see filename and linenumber In other words, the debugging is made harder. I heard it was related to the freepascal compiler was not able to cooperate with gdb as the generated stack frame format

Re: [lazarus] Resizable forms

2006-03-14 Thread Felipe Monteiro de Carvalho
On 3/14/06, Vincent Snijders [EMAIL PROTECTED] wrote: Why doesn't the MessageDlg form use an AutoSize label and AutoSized form? Same question for the PromptDialog etc. I agree with this. Can we fully implement this with autosize, anchors and OnResize? This way no new features would be needed.

Re: [lazarus] before I go to far with this

2006-03-14 Thread Michael Van Canneyt
On Tue, 14 Mar 2006, Jesus Reyes wrote: --- johnf [EMAIL PROTECTED] escribió: Hi I am now attempt to populate a dbgrid with the data I get from my sqlquery1. As I scroll across the columns I get the following: TApplication.HandleException Abstract method called Stack trace:

Re: [lazarus] HTTP GET

2006-03-14 Thread Alexsander Rosa
Is there a problem in using it many times or for binary files? I'm getting Bad request in the second call of HTTPMethod, like: if HTTP.HTTPMethod('GET', 'http://10.10.0.1/file1.txt') then // more code if HTTP.HTTPMethod('GET', 'http://10.10.0.1/file1.exe') then AFAIK, Bad Request is when the

[lazarus] Cannot start Lazarus any more...

2006-03-14 Thread Markku Niskanen
The recent removal of the (non-working) mysql component was disastrous for me as the non-working component was on component palette. After rebuild Lazarus throws an exception because it cannot find the component icon bitmap or something. I will presumably need to remove something from

Re: [lazarus] before I go to far with this

2006-03-14 Thread johnf
On Tuesday 14 March 2006 11:07, Jesus Reyes wrote: --- johnf [EMAIL PROTECTED] escribió: Hi I am now attempt to populate a dbgrid with the data I get from my sqlquery1. As I scroll across the columns I get the following: Am I doing something wrong or is this another bug?

Re: [lazarus] Cannot start Lazarus any more...

2006-03-14 Thread Mattias Gaertner
On Tue, 14 Mar 2006 22:48:43 +0200 Markku Niskanen [EMAIL PROTECTED] wrote: The recent removal of the (non-working) mysql component was disastrous for me as the non-working component was on component palette. After rebuild Lazarus throws an exception because it cannot find the component

Re: [lazarus] before I go to far with this

2006-03-14 Thread Michael Van Canneyt
On Tue, 14 Mar 2006, johnf wrote: On Tuesday 14 March 2006 11:07, Jesus Reyes wrote: --- johnf [EMAIL PROTECTED] escribió: Hi I am now attempt to populate a dbgrid with the data I get from my sqlquery1. As I scroll across the columns I get the following: Am I doing

Re: [lazarus] before I go to far with this

2006-03-14 Thread johnf
On Tuesday 14 March 2006 13:27, Michael Van Canneyt wrote: On Tue, 14 Mar 2006, johnf wrote: On Tuesday 14 March 2006 11:07, Jesus Reyes wrote: --- johnf [EMAIL PROTECTED] escribió: Hi I am now attempt to populate a dbgrid with the data I get from my sqlquery1. As I scroll

Re: [lazarus] HTTP GET

2006-03-14 Thread Alexsander Rosa
I was talking with Almindor in the #fpc channel, he said it could be wrong headers. Then I said: Of course! I called it once before, it populated the Headers... then when I call it the second time, it tries to send the headers it got from the 1st call! it must be it!. And it was it. You just need

Re: [lazarus] before I go to far with this

2006-03-14 Thread johnf
On Tuesday 14 March 2006 13:27, Michael Van Canneyt wrote: On Tue, 14 Mar 2006, johnf wrote: On Tuesday 14 March 2006 11:07, Jesus Reyes wrote: --- johnf [EMAIL PROTECTED] escribió: Hi I am now attempt to populate a dbgrid with the data I get from my sqlquery1. As I scroll

Re: [lazarus] before I go to far with this

2006-03-14 Thread Jesus Reyes
--- Michael Van Canneyt [EMAIL PROTECTED] escribió: On Tue, 14 Mar 2006, Jesus Reyes wrote: --- johnf [EMAIL PROTECTED] escribió: Hi I am now attempt to populate a dbgrid with the data I get from my sqlquery1. As I scroll across the columns I get the following:

Re: [lazarus] before I go to far with this

2006-03-14 Thread Jesus Reyes
--- Michael Van Canneyt [EMAIL PROTECTED] escribió: On Tue, 14 Mar 2006, Jesus Reyes wrote: --- johnf [EMAIL PROTECTED] escribió: Hi I am now attempt to populate a dbgrid with the data I get from my sqlquery1. As I scroll across the columns I get the following:

Re: [lazarus] before I go to far with this

2006-03-14 Thread Jesus Reyes
--- johnf [EMAIL PROTECTED] escribió: On Tuesday 14 March 2006 13:27, Michael Van Canneyt wrote: On Tue, 14 Mar 2006, johnf wrote: On Tuesday 14 March 2006 11:07, Jesus Reyes wrote: --- johnf [EMAIL PROTECTED] escribió: Hi I am now attempt to populate a dbgrid with the data I

Re: [lazarus] before I go to far with this

2006-03-14 Thread johnf
On Tuesday 14 March 2006 14:10, Jesus Reyes wrote: --- Michael Van Canneyt [EMAIL PROTECTED] escribió: On Tue, 14 Mar 2006, Jesus Reyes wrote: --- johnf [EMAIL PROTECTED] escribió: Hi I am now attempt to populate a dbgrid with the data I get from my sqlquery1. As I

Re: [lazarus] call stack and debugging problems

2006-03-14 Thread Marc Weustink
[EMAIL PROTECTED] wrote: Hi! When I debug a file. That is , the debugger stops and I look at the call stack, I cannot see filename and linenumber In other words, the debugging is made harder. I heard it was related to the freepascal compiler was not able to cooperate with gdb as the

Re: [lazarus] Cannot start Lazarus any more...

2006-03-14 Thread Markku Niskanen
On Tue, 14 Mar 2006 22:06:41 +0100, Mattias Gaertner [EMAIL PROTECTED] wrote: If you can start the IDE, uninstall the package. Cannot start the IDE so... If not, build a clean IDE (make clean all). Tried now with the 'all' option with the same result. Nope. Very strange indeed. Well - a

Re: [lazarus] Lazarus advocacy : Best App wrtitten in Lazarus

2006-03-14 Thread A.J. Venter
I like this idea, and it ties in with an idea I had, I would like to do a series of ¨people behind lazarus¨ interviews, similiar to the ¨people behind KDE¨ series from kde dot news, by itself though it wouldn´t work but perhaps combined with a site like this it would be a nice section ? If

Re: [lazarus] call stack and debugging problems

2006-03-14 Thread Peter Vreman
Hi! When I debug a file. That is , the debugger stops and I look at the call stack, I cannot see filename and linenumber In other words, the debugging is made harder. I heard it was related to the freepascal compiler was not able to cooperate with gdb as the generated stack frame format

Re: [lazarus] Resizable forms

2006-03-14 Thread Patrick Chevalley
Hi,Even on my computer, that has a slightly bigger standard font on Windows, most forms from the IDE look bad.I also remark this problem with my application, only with Windows big font, all the testing I do with Gtk at different screen resolution do not show this problem. I solve by calling this