Re: [Lazarus] Bugs in Delphi DragTo?

2009-03-13 Thread Paul Ishenin
Hans-Peter Diettrich wrote: Lazarus uses almost the same implementation in TDragPerformer, what IMO should be fixed. What needs to be fixed? Do you have an example where this does not works? DragImageList is not a control, so it is normal that it stops dragging when Target = nil.

[Lazarus] Trunk cannot compile. Missing unit 'PropEdits'

2009-03-13 Thread Graeme Geldenhuys
I just got an svn update for Lazarus to r18979. I did a make clean and build and it fails with the missing unit 'PropEdits' in the SynPropertyEditObjectList unit. Regards, - Graeme - ___ fpGUI - a cross-platform Free Pascal GUI toolkit

Re: [Lazarus] Trunk cannot compile. Missing unit 'PropEdits'

2009-03-13 Thread dmitry boyarintsev
I just got an svn update for Lazarus to r18979.  I did a make clean and build and it fails with the missing unit 'PropEdits' in the SynPropertyEditObjectList unit. you nead to clean all. infact, i've had to delete the whole units (compiler units) directory. Thanks, Dmitry

Re: [Lazarus] Trunk cannot compile. Missing unit 'PropEdits'

2009-03-13 Thread Paul Ishenin
Graeme Geldenhuys wrote: I just got an svn update for Lazarus to r18979. I did a make clean and build and it fails with the missing unit 'PropEdits' in the SynPropertyEditObjectList unit. We had some problems before but there were already solved. Try to make clean bigide. Best regards, Paul

Re: [Lazarus] Trunk cannot compile. Missing unit 'PropEdits'

2009-03-13 Thread Graeme Geldenhuys
On Fri, Mar 13, 2009 at 10:19 AM, dmitry boyarintsev skalogryz.li...@gmail.com wrote: I just got an svn update for Lazarus to r18979.  I did a make clean and build and it fails with the missing unit 'PropEdits' in the SynPropertyEditObjectList unit. you nead to clean all. infact, i've had to

[Lazarus] Code Folding mess and Code Divider feature

2009-03-13 Thread Graeme Geldenhuys
Hi, This relates to the new bug report: http://bugs.freepascal.org/view.php?id=13322 Code Folding seems to have gone way overboard! It simply makes the editor look like a mess at the moment (Lazarus svn trunk revision). What is the end goal of code folding? Maybe is in the middle of the

[Lazarus] TProcess 2-way conversation

2009-03-13 Thread Dave Coventry
Hi, I'm writing a quick an dirty app to automate some commands which would normally be issued by a terminal something like PuTTy. To do this I'm using TProcess to call plink.exe and then trying to ssh into the remote box and issue commands. In short I want to log into the remote box and execute

Re: [Lazarus] Code Folding mess and Code Divider feature

2009-03-13 Thread Martin Friebe
Graeme Geldenhuys wrote: Hi, This relates to the new bug report: http://bugs.freepascal.org/view.php?id=13322 Code Folding seems to have gone way overboard! It simply makes the editor look like a mess at the moment (Lazarus svn trunk revision). What is the end goal of code folding?

Re: [Lazarus] TProcess 2-way conversation

2009-03-13 Thread Burkhard Carstens
Am Freitag, 13. März 2009 12:23 schrieb Dave Coventry: Hi, I'm writing a quick an dirty app to automate some commands which would normally be issued by a terminal something like PuTTy. To do this I'm using TProcess to call plink.exe and then trying to ssh into the remote box and issue

Re: [Lazarus] TProcess 2-way conversation

2009-03-13 Thread Vincent Snijders
Dave Coventry schreef: Hi, I'm writing a quick an dirty app to automate some commands which would normally be issued by a terminal something like PuTTy. To do this I'm using TProcess to call plink.exe and then trying to ssh into the remote box and issue commands. In short I want to log

Re: [Lazarus] Compiling for both GTK1 and GTK2 in Lazarus built from SVN

2009-03-13 Thread Bart
On 3/11/09, Vincent Snijders vsnijd...@vodafonevast.nl wrote: b...@simenon:~/svnroot/lazarus make lcl LCL_PLATFORM=gtk1 make lcl LCL_PLATFORM=gtk Aargh I'm feeling rather stupid now... Thanks, Bart ___ Lazarus mailing list

Re: [Lazarus] TFloatSpinEdit and DecimalSeparator (GTK)

2009-03-13 Thread Bart
You included clocale unit in your .dpr (UNIX targets only) ? DecimalSeparator at programstart: '.' (period) = DEFAULT , that means that clocale unit is missing. I was under the impression that the value of SysUtils.DecimalSeparator was determined/set at programstart using locale settings?

Re: [Lazarus] Code Folding mess and Code Divider feature

2009-03-13 Thread Graeme Geldenhuys
On Fri, Mar 13, 2009 at 2:16 PM, Martin Friebe laza...@mfriebe.de wrote: What is the end goal of code folding? Maybe is in the middle of the overall goal and I am simply acting to quickly. Either way, I will voice my concerns... There is a general plan/idea to add some configuration (have to

Re: [Lazarus] Compiling for both GTK1 and GTK2 in Lazarus built from SVN

2009-03-13 Thread Graeme Geldenhuys
On Fri, Mar 13, 2009 at 3:18 PM, Bart bartjun...@gmail.com wrote: On 3/11/09, Vincent Snijders vsnijd...@vodafonevast.nl wrote: b...@simenon:~/svnroot/lazarus make lcl LCL_PLATFORM=gtk1 make lcl LCL_PLATFORM=gtk Maybe I missed it, but is this information in any of the readme files? I looked

Re: [Lazarus] Code Folding mess and Code Divider feature

2009-03-13 Thread Martin Friebe
Graeme Geldenhuys wrote: code folding. The idea of draw code divider was simply to draw a horizontal line at the end of each procedure or method (like visual basic 6 did). I have no interest in drawing horizontal divider lines wherever code folding can occur. And with the current verbose

Re: [Lazarus] Code Folding mess and Code Divider feature

2009-03-13 Thread Graeme Geldenhuys
On Fri, Mar 13, 2009 at 4:10 PM, Martin Friebe laza...@mfriebe.de wrote: so they are all with Settings:  Code Folding: Enabled  Divider Draw Level: 1 ? Yes In that case the first picture is wrong = with DDL=1 there should be no line between procedures (it would be at the end of the

Re: [Lazarus] Code Folding mess and Code Divider feature

2009-03-13 Thread Stephano
Martin Friebe wrote: There is a general plan/idea to add some configuration (have to see how much) to define what you want to have foldable and what not. It wasn't seen as urgent yet (at least not by me...) Most (if not all) of the places that allow folding now, do so in Delphi as well.

Re: [Lazarus] TFloatSpinEdit and DecimalSeparator (GTK)

2009-03-13 Thread zeljko
On Friday 13 March 2009 14:27, Bart wrote: You included clocale unit in your .dpr (UNIX targets only) ? DecimalSeparator at programstart: '.' (period) = DEFAULT , that means that clocale unit is missing. I was under the impression that the value of SysUtils.DecimalSeparator was

Re: [Lazarus] Code Folding mess and Code Divider feature

2009-03-13 Thread Alexander Klenin
On Fri, Mar 13, 2009 at 22:16, Martin Friebe laza...@mfriebe.de wrote: There is a general plan/idea to add some configuration (have to see how much) to define what you want to have foldable and what not. It wasn't seen as urgent yet (at least not by me...) Most (if not all) of the places that

Re: [Lazarus] Code Folding mess and Code Divider feature

2009-03-13 Thread Martin Friebe
Graeme Geldenhuys wrote: In that case the first picture is wrong = with DDL=1 there should be no line between procedures (it would be at the end of the unit level.) Not sure if complete: DDL 1: unit level DDL 2: implementation/ interface DDL 3: Procedure implementation / class declaration

[Lazarus] Stringgrid woes...

2009-03-13 Thread Michael Van Canneyt
Hello, The stringgrid editor does the following: procedure TStringCellEditor.Change; begin inherited Change; if FGridnil then begin FGrid.SetEditText(FCol, FRow, Text); end; end; procedure TStringCellEditor.EditingDone; begin inherited EditingDone; if FGridnil then

Re: [Lazarus] Code Folding mess and Code Divider feature

2009-03-13 Thread Martin Friebe
Stephano wrote: Martin Friebe wrote: There is a general plan/idea to add some configuration (have to see how much) to define what you want to have foldable and what not. It wasn't seen as urgent yet (at least not by me...) Most (if not all) of the places that allow folding now, do so

Re: [Lazarus] TProcess 2-way conversation

2009-03-13 Thread Dave Coventry
Thanks guys! Actually, as I sent it off I thought This isn't the best way of doing this and I thought I might get either a dignified lack of response or howls of derision! But I'm having great difficulty in stalling any of the Internet suites: lNet doesn't install because of a missing

Re: [Lazarus] Stringgrid woes...

2009-03-13 Thread Sergei Gorelkin
Michael Van Canneyt wrote: ... Is there a reason for the current behaviour, and can it be changed ? With Delphi, I used to check the grid.EditorMode property in OnSetEditText handler, and skip all validations when EditorMode=true. Didn't check this with LCL, but there's a good chance it

Re: [Lazarus] Code Folding mess and Code Divider feature

2009-03-13 Thread Alexander Klenin
On Sat, Mar 14, 2009 at 02:03, Martin Friebe laza...@mfriebe.de wrote: Not yet. this will at earliest be implemented, when individual folds can be configured. The same applies for repeat/until It may also have to wait fro some more/other refactoring on the folding. The highlighting currently

Re: [Lazarus] Stringgrid woes...

2009-03-13 Thread Michael Van Canneyt
On Fri, 13 Mar 2009, Sergei Gorelkin wrote: Michael Van Canneyt wrote: ... Is there a reason for the current behaviour, and can it be changed ? With Delphi, I used to check the grid.EditorMode property in OnSetEditText handler, and skip all validations when EditorMode=true. Didn't

Re: [Lazarus] Stringgrid woes...

2009-03-13 Thread Jesus Reyes
--- El vie 13-mar-09, Michael Van Canneyt michael.vancann...@wisa.be escribió: De:: Michael Van Canneyt michael.vancann...@wisa.be Asunto: [Lazarus] Stringgrid woes... A: Lazarus mailing list lazarus@lazarus.freepascal.org Fecha: viernes, 13 marzo, 2009, 10:03 am Hello, [...] This

Re: [Lazarus] Stringgrid woes...

2009-03-13 Thread Sergei Gorelkin
Jesus Reyes wrote: Is this different on Delphi? I would like to improve compatibility if it's not. If OnSetEditText is enough in Delphi to know when editing is finished then I think we should do it also. It appears to be different then. In Delphi, OnSetEditText is called multiple times

Re: [Lazarus] Inconsistent behavior of LabeledEdit boxes on different pages of a TabbedNotebook

2009-03-13 Thread cobalt747
Здравствуйте, david. In WinXP SP3 all right, except that color of edit changed, when Object Inspector lose focus. Вы писали 9 марта 2009 г., 19:12:05: Ok, the project is attached as test1.zip. If you need anything else, just let me know. Help is much appreciated! david -- С уважением,

Re: [Lazarus] Stringgrid woes...

2009-03-13 Thread Michael Van Canneyt
On Fri, 13 Mar 2009, Jesus Reyes wrote: This makes it completely impossible to do any checking of the entered values, because the SetEditText() event has no way of knowing when the editing ends. In my opinion, the SetEditText() should only be called when the editing is done, i.e.

Re: [Lazarus] Stringgrid woes...

2009-03-13 Thread Michael Van Canneyt
On Fri, 13 Mar 2009, Sergei Gorelkin wrote: Jesus Reyes wrote: Is this different on Delphi? I would like to improve compatibility if it's not. If OnSetEditText is enough in Delphi to know when editing is finished then I think we should do it also. It appears to be different

Re: [Lazarus] Placing a TProgressBar into a TStatusBar

2009-03-13 Thread cobalt747
Здравствуйте, Andrea. Try this: procedure TForm1.FormCreate(Sender: TObject); var ProgressBar1: TProgressBar; begin ProgressBar1:= TProgressBar.Create(StatusBar1); with ProgressBar1 do begin Parent := StatusBar1; Left := 50; Visible:= true;

Re: [Lazarus] Code Folding mess and Code Divider feature

2009-03-13 Thread Michael Van Canneyt
On Fri, 13 Mar 2009, Martin Friebe wrote: Graeme Geldenhuys wrote: Hi, This relates to the new bug report: http://bugs.freepascal.org/view.php?id=13322 Code Folding seems to have gone way overboard! It simply makes the editor look like a mess at the moment (Lazarus svn trunk

Re: [Lazarus] Placing a TProgressBar into a TStatusBar

2009-03-13 Thread Andrea Mauri
Thanks, it works. Just the Left property seems to have no effect, the ProgressBar is placed on the left corner ot the StatusBar1, like having Left:= 0. There's a way to associate a ProgressBar with a TStatusPanel? I tried using this code, but nothing happens: procedure

Re: [Lazarus] SQLDB invalid handle

2009-03-13 Thread Bram Kuijvenhoven
Dear Stephano, Stephano wrote: The following code produces an error: Could you please provide some more details? - FPC version - A minimal but complete test program demonstrating the error To ensure reproducibility of the problem, please report under which configuration of OS, DBMS and ODBC

Re: [Lazarus] Stringgrid woes...

2009-03-13 Thread Jesus Reyes
--- El vie 13-mar-09, Michael Van Canneyt mich...@freepascal.org escribió: if grid.Modified then begin [Do validation on col,row cell. Revert changes if not validated, etc] grid.Modified := false; end; The problem is that the actual data is not in the grid cells, so

Re: [Lazarus] Stringgrid woes...

2009-03-13 Thread Sergei Gorelkin
Michael Van Canneyt wrote: Not in delphi 7, I tested ? However, it is called when you set EditorMode explicitly to false. But never by itself. Yep, I was wrong, details tend to become forgotten with time :( But only partially. It is called when you finish editing by pressing Enter, or

Re: [Lazarus] TProcess 2-way conversation

2009-03-13 Thread Dave Coventry
Hi Vincent, 2009/3/13 Vincent Snijders vsnijd...@vodafonevast.nl: See the process example: http://wiki.lazarus.freepascal.org/Executing_External_Programs#Using_input_and_output_of_a_TProcess and https://lazarus-ccr.svn.sourceforge.net/svnroot/lazarus-ccr/examples/process/ Vincent That was

Re: [Lazarus] Placing a TProgressBar into a TStatusBar

2009-03-13 Thread cobalt747
Здравствуйте, Andrea. I think, now it is no way to associate some control with TCollectionItem-descendant like TStatusPanel I make it with OnResize event by updating it's coordinates. Вы писали 14 марта 2009 г., 0:02:36: Thanks, it works. Just the Left property seems to have no effect, the