Re: [Lazarus] FPC and Lazarus trunk

2014-01-11 Thread leledumbo
> Search for variants.* especially in the install folder as there may be several dangling ones due to recent changes in 2.7.1. If more then one is found, it would be better to clean all object files thoroughly. Got it, instead of rtl and objpas, there are rtl and rtl-objpas directories now. The

Re: [Lazarus] New NumbersOnly property for TCustomEdit (r43678)

2014-01-11 Thread Graeme Geldenhuys
On 2014-01-10 14:07, Michael Van Canneyt wrote: > Because Maskedit always does a lot more than just limiting your entry to > numbers. > Alignment, adding spaces whatnot. Usually in totally unnatural ways OK, fair enough, but all those can be configured too. Anyway, back in my VCL and LCL days I

[Lazarus] DoAlignChildControls does not keep design-time order when some items are hidden in design-time

2014-01-11 Thread Alexsander Rosa
New Project: 1. Insert Panel1 with Align = Top 2. Insert Panel2 with Align = Client 3. Insert a Panel3 inside Panel2 with Align = Right 4. Insert 6 buttons in Panel3, all with Align = Top 5. Sort the buttons from Button1 to Button6 6. Set Panel3 with AutoSize = true 7. Resize Panel1 to hide Buttons

Re: [Lazarus] New NumbersOnly property for TCustomEdit (r43678)

2014-01-11 Thread Bart
On 1/10/14, Mailing Lists wrote: > Confused... Why not just use a MaskEdit widget? Because a masked MaskEdit also limits the number of digits one can enter. And it doesn't look as nice as a simple TEdit. Personally I would go for a T(Float)SpinEdit rather than a MaskEdit. > Or doesn't LCL hav

Re: [Lazarus] New NumbersOnly property for TCustomEdit (r43678)

2014-01-11 Thread Bart
On 1/10/14, Michael Van Canneyt wrote: > I never liked a maskedit. > Well, ages ago (as it seems) we didn't have a decent MaskEdit. I needed it and so rewrote major parts of it. And tried to get rid of some illogical features that the Borland guys introduced. After I had done that, I realized t

Re: [Lazarus] New NumbersOnly property for TCustomEdit (r43678)

2014-01-11 Thread Bart
On 1/11/14, Graeme Geldenhuys wrote: > Anyway, back in my VCL and LCL days I used to simply hook a generic > OnKeyPress event to TEdit and it automatically limited the text box to > numeric data only. The event handler was something like 2-3 lines of > code. I could find it if somebody was really

[Lazarus] "Access violation" while make lazarus svn and can not make IDE

2014-01-11 Thread FreeMan
Hello, Trying last svn update and this error exeption stop makeing IDe fpc svn update 26420 lazarus svn update 43702 QT widget Kubuntu 13.10 x64 make[1]: `/opt/lazarus/components/chmhelp/lhelp' dizininden çıkılıyor [FORMS.PP] ExceptionOccurred Sender=EAccessViolation Exception=Access violat

Re: [Lazarus] "Access violation" while make lazarus svn and can not make IDE

2014-01-11 Thread Martin Frb
On 11/01/2014 13:26, FreeMan wrote: $004008E5 line 190 of lazbuild.lpr should be fixed now -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

[Lazarus] [FIXED] Re: "Access violation" while make lazarus svn and can not make IDE

2014-01-11 Thread FreeMan
Yes Fixed Thank you very much Martin 11-01-2014 15:31 tarihinde, Martin Frb yazdı: On 11/01/2014 13:26, FreeMan wrote: $004008E5 line 190 of lazbuild.lpr should be fixed now -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] FPC and Lazarus trunk

2014-01-11 Thread Marco van de Voort
On Fri, Jan 10, 2014 at 07:23:18PM -0500, waldo kitty wrote: > > i've just updated my FPC trunk and now my Lazarus trunk won't compile... > -vewnhi -l -Fu. -FE. -FU../units/i386-win32 -gl -gh -dHEAPTRC_WINDOW -di386 > fcllaz.pas > Hint: Start of reading config file > c:\freepascal\fpc\trunk\bin\

Re: [Lazarus] [ANN] Lazarus Manager v0.8

2014-01-11 Thread Hans-Peter Diettrich
Kjow schrieb: 2014/1/10 Hans-Peter Diettrich > Well, if Lazarus Manager can't use svn nothing will work. [...] *Manually* here means using some tool - which one? 7-zip -> Open These two tools should be mentioned in the docs, how to check for already inst

[Lazarus] Some problems with trunk

2014-01-11 Thread Hans-Peter Diettrich
I just used Lazarus Manager to create FPC and Lazarus trunk and stable/patches versions on a WinXP system. But then I ran into the following problems, which seem not to be related to this tool: No Lazarus.exe is created for the stable (fixes_1_2) branch? The trunk IDE (1.3) setup expects "fpc.

Re: [Lazarus] [ANN] Lazarus Manager v0.8

2014-01-11 Thread Hans-Peter Diettrich
Reinier Olislagers schrieb: On 11/01/2014 01:09, waldo kitty wrote: On 1/10/2014 5:04 PM, Kjow wrote: AFAIK, TortiseSVN has never had a "svn.exe"... i've always had to use their executable's filename in my scripts... http://stackoverflow.com/questions/2967176/where-is-svn-exe-in-my-machine UPD

Re: [Lazarus] [ANN] Lazarus Manager v0.8

2014-01-11 Thread Hans-Peter Diettrich
waldo kitty schrieb: AFAIK, TortiseSVN has never had a "svn.exe"... i've always had to use their executable's filename in my scripts... eg: for FPC -> TortoiseProc /command:update /path:"%myFPCdir%" for LAZ -> TortoiseProc /command:update /path:"%myLAZdir%" Thanks, installing another (no

Re: [Lazarus] New NumbersOnly property for TCustomEdit (r43678)

2014-01-11 Thread Hans-Peter Diettrich
Bart schrieb: An edit control that controls input based on a regex, and looking like a simple TEdit, might be a nice feature to have. I found general masking problems while entering (incomplete) input, and while editing the previous input. Where should the cursor be moved, i.e. which (first)

Re: [Lazarus] New NumbersOnly property for TCustomEdit (r43678)

2014-01-11 Thread Bart
On 1/11/14, Hans-Peter Diettrich wrote: > I found general masking problems while entering (incomplete) input, and > while editing the previous input. Where should the cursor be moved, i.e. > which (first) character doesn't match the specification? You lost me here. Which component are you descri

Re: [Lazarus] New NumbersOnly property for TCustomEdit (r43678)

2014-01-11 Thread Michael Van Canneyt
On Sat, 11 Jan 2014, Bart wrote: On 1/10/14, Michael Van Canneyt wrote: I never liked a maskedit. Well, ages ago (as it seems) we didn't have a decent MaskEdit. I needed it and so rewrote major parts of it. And tried to get rid of some illogical features that the Borland guys introduced.

[Lazarus] Fatal: Compilation aborted while make lazarus svn and can not make IDE

2014-01-11 Thread FreeMan
fpc svn update 26425 lazarus svn update 43708 QT widget Kubuntu 13.10 x64 I delete all fp & lazarus file then re install svn versions but this error occur Hint: End of reading config file /etc/fpc.cfg Free Pascal Compiler version 2.7.1 [2014/01/11] for x86_64 Copyright (c) 1993-2013 by Florian

Re: [Lazarus] New NumbersOnly property for TCustomEdit (r43678)

2014-01-11 Thread Graeme Geldenhuys
On 2014-01-11 13:05, Bart wrote: > An edit control that controls input based on a regex, and looking like > a simple TEdit, might be a nice feature to have. Much better idea, but as Michael pointed out, you probably don't need another control for that. Take a look at Qt for a nice example (if I'm

Re: [Lazarus] New NumbersOnly property for TCustomEdit (r43678)

2014-01-11 Thread Graeme Geldenhuys
On 2014-01-11 18:12, Graeme Geldenhuys wrote: > another control for that. Take a look at Qt for a nice example (if I'm > not mistaken). Here is what I was talking about... http://ynonperek.com/course/qt/validation.html Regards, - Graeme - -- fpGUI Toolkit - a cross-platform GUI toolkit us

Re: [Lazarus] Fatal: Compilation aborted while make lazarus svn and can not make IDE

2014-01-11 Thread FreeMan
fpc svn update 26427 lazarus svn update 43710 Now builded IDE. 11-01-2014 19:14 tarihinde, FreeMan yazdı: fpc svn update 26425 lazarus svn update 43708 QT widget Kubuntu 13.10 x64 -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http

Re: [Lazarus] New NumbersOnly property for TCustomEdit (r43678)

2014-01-11 Thread Hans-Peter Diettrich
Bart schrieb: On 1/11/14, Hans-Peter Diettrich wrote: I found general masking problems while entering (incomplete) input, and while editing the previous input. Where should the cursor be moved, i.e. which (first) character doesn't match the specification? You lost me here. Which component ar

Re: [Lazarus] Fwd: newbie

2014-01-11 Thread duilio foschi
the compiler says "Can't find unit ComponentTreeView used by ObjectInspector". This message in plain English language seems clear to me, also because I am accustomed to it (I have been working with Delphi since v. 1). Nothing of that. The compiler wants to mean "I found unit ComponentTreeView an

Re: [Lazarus] New NumbersOnly property for TCustomEdit (r43678)

2014-01-11 Thread Bart
On 1/11/14, Graeme Geldenhuys wrote: > But if you guys are anal about "delphi compatibility" like the FPC > developers, then that is probably not an option for you. AFAIK there is no objection to extent our LCL controls beyound Delphi capabilities. The compatibility must be tha we can compile De

Re: [Lazarus] Fwd: newbie

2014-01-11 Thread Mattias Gaertner
On Sat, 11 Jan 2014 23:12:19 +0100 duilio foschi wrote: > the compiler says "Can't find unit ComponentTreeView used by ObjectInspector". > > This message in plain English language seems clear to me, also because > I am accustomed to it (I have been working with Delphi since v. 1). Yes, I agree

Re: [Lazarus] [ANN] Lazarus Manager v0.8

2014-01-11 Thread waldo kitty
On 1/10/2014 8:57 PM, Reinier Olislagers wrote: On 11/01/2014 01:09, waldo kitty wrote: On 1/10/2014 5:04 PM, Kjow wrote: AFAIK, TortiseSVN has never had a "svn.exe"... i've always had to use their executable's filename in my scripts... http://stackoverflow.com/questions/2967176/where-is-svn-e

Re: [Lazarus] FPC and Lazarus trunk

2014-01-11 Thread waldo kitty
On 1/11/2014 9:13 AM, Marco van de Voort wrote: On Fri, Jan 10, 2014 at 07:23:18PM -0500, waldo kitty wrote: [...] PPU Loading C:\freepascal\fpc\trunk\units\i386-win32\rtl\variants.ppu PPU Source: variants.pp not available Recompiling variants, checksum changed for System Fatal: Can't find un

[Lazarus] revision 43702 gives broken lazbuild

2014-01-11 Thread leledumbo
Can anyone confirm before I file a bug report? This happens when I try to build using `make clean lazbuild useride`, lazbuild crashes even when called without argument. -- View this message in context: http://free-pascal-lazarus.989080.n3.nabble.com/revision-43702-gives-broken-lazbuild-tp403534