[Lazarus] Publishing TBufDataset

2009-09-28 Thread Zlatko Matić
Hello, Recently I replaced MemDataset with BufDataset, because it has Locate and filters implemented. So, I'm wondering why TBufDataset is not published as a component under DataAccess pallette? I think it would be good to do, since it is good component for working with in-memory data, something l

Re: [Lazarus] Call stack window - columns not resizable

2009-09-28 Thread Torsten Bonde Christiansen
Mattias Gaertner wrote: On Mon, 28 Sep 2009 20:37:40 +0200 Vincent Snijders wrote: Mattias Gaertner schreef: I can change column widths here. But the mouse pointer does change when moving the mouse over the separators. Does or does not?

Re: [Lazarus] How to access version info

2009-09-28 Thread Torsten Bonde Christiansen
Paul Ishenin wrote: David B Copeland wrote: Is there a way to access the version info and build number that Lazarus can embed into the executable? Running: SUSE 11.1, x86_64, Lazarus SVN 21901, FPC 2.2.5. For you OS I think no. Currently lazarus put the version info into a .rc file wich is

Re: [Lazarus] How to access version info

2009-09-28 Thread Paul Ishenin
waldo kitty wrote: are you saying that winwhatever *.RES files are also going to be processed such that they do not require a resource editor to extract resources like icons and images to be placed by some means in a *.lrs file??? fpc 2.4.0 will have a builtin support for resources. And no .

Re: [Lazarus] Using parameters with sqldb

2009-09-28 Thread waldo kitty
JoshyFun wrote: Hello Lazarus, Monday, September 28, 2009, 10:20:49 PM, you wrote: AR> ParamByName['filtro'].Value = 'TESTE%' right before the Open(). What am I AR> doing wrong? Try using: .ParamByname('filtro').AsString:='TESTE%'; .Value is not a good friend. then why does it exist if no

Re: [Lazarus] How to access version info

2009-09-28 Thread waldo kitty
Paul Ishenin wrote: David B Copeland wrote: Is there a way to access the version info and build number that Lazarus can embed into the executable? Running: SUSE 11.1, x86_64, Lazarus SVN 21901, FPC 2.2.5. For you OS I think no. Currently lazarus put the version info into a .rc file wich is

Re: [Lazarus] How to access version info

2009-09-28 Thread Paul Ishenin
David B Copeland wrote: Thanks. After I sent the question, I managed to find some older list messages on the subject. Is it known when fpc 2.4 might be released? In the mean time I guess I can just read the .rc file directly. FPC team is preparing 2.4 for the release but this can take some mon

Re: [Lazarus] Using parameters with sqldb

2009-09-28 Thread JoshyFun
Hello Lazarus, Monday, September 28, 2009, 10:20:49 PM, you wrote: AR> ParamByName['filtro'].Value = 'TESTE%' right before the Open(). What am I AR> doing wrong? Try using: .ParamByname('filtro').AsString:='TESTE%'; .Value is not a good friend. -- Best regards, JoshyFun -- ___

Re: [Lazarus] How to access version info

2009-09-28 Thread Henry Vermaak
2009/9/28 David B Copeland : > Hi Henry, > > This isn't what I was looking for but thanks just the same. Ops, I misunderstood you there, sorry :) Henry -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org

[Lazarus] Using parameters with sqldb

2009-09-28 Thread Alexsander Rosa
I'm trying to use parameters with sqldb with no success. At the moment I'm assembling the entire SQL command, but I would like to be able to use the Params property. Is there any online tutorial about this? The SQL.Text property of the SQLQuery object ends with '... LIKE :filtro' and there's a Para

Re: [Lazarus] How to access version info

2009-09-28 Thread David B Copeland
Hi Paul, Thanks. After I sent the question, I managed to find some older list messages on the subject. Is it known when fpc 2.4 might be released? In the mean time I guess I can just read the .rc file directly. Thanks again, Dave. On Mon, 2009-09-28 at 23:10 +0800, Paul Ishenin wrote: > David B

Re: [Lazarus] How to access version info

2009-09-28 Thread David B Copeland
Hi Henry, This isn't what I was looking for but thanks just the same. Dave. On Mon, 2009-09-28 at 16:02 +0100, Henry Vermaak wrote: > 2009/9/28 Henry Vermaak : > > 2009/9/28 David B Copeland : > >> Is there a way to access the version info and build number that Lazarus > >> can embed into the ex

Re: [Lazarus] Call stack window - columns not resizable

2009-09-28 Thread Mattias Gaertner
On Mon, 28 Sep 2009 20:37:40 +0200 Vincent Snijders wrote: > Mattias Gaertner schreef: > > > > I can change column widths here. But the mouse pointer does change > > when moving the mouse over the separators. > > Does or does not? does *not* change. Mattias -- _

Re: [Lazarus] Call stack window - columns not resizable

2009-09-28 Thread Vincent Snijders
Mattias Gaertner schreef: I can change column widths here. But the mouse pointer does change when moving the mouse over the separators. Does or does not? Vincent -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.

Re: [Lazarus] Call stack window - columns not resizable

2009-09-28 Thread Mattias Gaertner
On Mon, 28 Sep 2009 14:21:49 +0200 Torsten Bonde Christiansen wrote: > Marc Weustink wrote: > > Torsten Bonde Christiansen wrote: > >> Hi. > >> > >> During a recent debugging session I used the call stack window, > >> but found that I'm not able to change the width of the columns. > >> Since my f

Re: [Lazarus] Why dEnableMultiFormProperties is not default?

2009-09-28 Thread Mattias Gaertner
On Mon, 28 Sep 2009 13:49:11 -0300 Osvaldo Filho wrote: > Why dEnableMultiFormProperties is not default? It is. ? Mattias -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

[Lazarus] Why dEnableMultiFormProperties is not default?

2009-09-28 Thread Osvaldo Filho
Why dEnableMultiFormProperties is not default? -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] How to access version info

2009-09-28 Thread Paul Ishenin
David B Copeland wrote: Is there a way to access the version info and build number that Lazarus can embed into the executable? Running: SUSE 11.1, x86_64, Lazarus SVN 21901, FPC 2.2.5. For you OS I think no. Currently lazarus put the version info into a .rc file wich is linked into the execu

Re: [Lazarus] How to access version info

2009-09-28 Thread Henry Vermaak
2009/9/28 Henry Vermaak : > 2009/9/28 David B Copeland : >> Is there a way to access the version info and build number that Lazarus >> can embed into the executable? > > Have a look at lcl/lclversion.pas. There is also /ide/revision.inc that gets updated with every build. Henry -- __

Re: [Lazarus] How to access version info

2009-09-28 Thread Henry Vermaak
2009/9/28 David B Copeland : > Is there a way to access the version info and build number that Lazarus > can embed into the executable? Have a look at lcl/lclversion.pas. Henry -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lis

Re: [Lazarus] MaskEdit question

2009-09-28 Thread Bart
Hi Gerard, > Same explanation in D7 Help. I don't have D2010,  I asked a friend to > test for me. Could you ask him to look at the help text also? > I don't know what is the usual way to do with Delphi bugs like this > one. Fix them or keep compatibility even with the incorrect behaviour? That

[Lazarus] How to access version info

2009-09-28 Thread David B Copeland
Is there a way to access the version info and build number that Lazarus can embed into the executable? Running: SUSE 11.1, x86_64, Lazarus SVN 21901, FPC 2.2.5. Thanks, Dave Copeland. -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] Last-minute 0.9.28 nominations

2009-09-28 Thread Alexander Klenin
Hm, since there is still no tag, maybe merge r21888 as well -- it is also a very minor bugfix. -- Alexander S. Klenin -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Call stack window - columns not resizable

2009-09-28 Thread Torsten Bonde Christiansen
Torsten Bonde Christiansen wrote: From Laz. about: Lazarus 0.9.29 r21901M FPC 2.5.1 x86_64-linux-gtk 2 (beta) Btw. i noticed that it is possible to change the width on windows... -Torsten. -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal

Re: [Lazarus] Call stack window - columns not resizable

2009-09-28 Thread Torsten Bonde Christiansen
Marc Weustink wrote: Torsten Bonde Christiansen wrote: Hi. During a recent debugging session I used the call stack window, but found that I'm not able to change the width of the columns. Since my filenames are often long and it can be hard to see which file the function is in. Should I sub

Re: [Lazarus] Call stack window - columns not resizable

2009-09-28 Thread Marc Weustink
Torsten Bonde Christiansen wrote: Hi. During a recent debugging session I used the call stack window, but found that I'm not able to change the width of the columns. Since my filenames are often long and it can be hard to see which file the function is in. Should I submit this as a bug? T

Re: [Lazarus] MaskEdit question

2009-09-28 Thread Gerard N/A
Hi Bart, > > So the '_' is treated as a lireal '_', not as a literal space. > So it seems. > The Delphi (3) help states: > The _ character automatically inserts spaces into the text. When the > user enters characters in the field, the cursor skips the _ character. > Same explanation in D7 Help.

Re: [Lazarus] MaskEdit question

2009-09-28 Thread Bart
Hi Gerard, Thanks for testing. > If I set EditMask to 'ccc_ccc;1;+' , with D7 and D2010: > > MaskEdit.Text '   _   ' (3 spaces, '_', 3 spaces) > MaskEdit.EditText '+++_+++' > So the '_' is treated as a lireal '_', not as a literal space. The Delphi (3) help states: The _ character automatically

Re: [Lazarus] MaskEdit question

2009-09-28 Thread Gerard N/A
Hi Bart, If I set EditMask to 'ccc_ccc;1;+' , with D7 and D2010: MaskEdit.Text '   _   ' (3 spaces, '_', 3 spaces) MaskEdit.EditText '+++_+++' HTH, Gerard. -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepasc