Re: [Lazarus] A change in LCL require your TCustomForm descendants to have a resource or to use a CreateNew constructor

2011-02-01 Thread Vincent Snijders
2011/2/2 Zaher Dirkey : > But i like to be RequireDerivedFormResource := True by default, for old I would like that too. > projects it must add RequireDerivedFormResource := False, that reduce the > lines in the new projects lpr files and more safe for old projects that no > need to create resour

Re: [Lazarus] Lazarus Project Group

2011-02-01 Thread Graeme Geldenhuys
Op 2011-02-02 05:21, Zaher Dirkey het geskryf: > > Same, i dislike ProjectGroup. Maybe show a dialog for recent opened > files is more easy/best way. Delphi's Project Group are not just about a collection of related projects. You can do many other things too, with a single click. Build all projec

Re: [Lazarus] CGILazIDE cannot be found...

2011-02-01 Thread Bo Berglund
On Tue, 01 Feb 2011 19:37:48 -0500, waldo kitty wrote: >> In principle you are right that there is a step missing (and thanks for >> pointing >> out), but I don't consider Bo a complete newbie as he's already worked with >> Delphi before and he's also managed to follow my instructions with a bit

Re: [Lazarus] Lazarus Project Group

2011-02-01 Thread Alexander Klenin
2011/2/2 silvioprog : > 2011/2/1 Graeme Geldenhuys >> >> As a work-around, increase the 'recent file' and 'recent project' count >> from 5 (default) to say 20. This then allows you to easily get to all >> your common projects. >> > I already do :T. But I wanted to distribute the file. > How about

Re: [Lazarus] Lazarus Project Group

2011-02-01 Thread Zaher Dirkey
On Tue, Feb 1, 2011 at 2:27 PM, Marco van de Voort wrote: > I never use them, since switching project without completely closing the > former project on Delphi is troublesome if you use relative paths. > Same, i dislike ProjectGroup. Maybe show a dialog for recent opened files is more easy/best

Re: [Lazarus] A change in LCL require your TCustomForm descendants to have a resource or to use a CreateNew constructor

2011-02-01 Thread Zaher Dirkey
On Wed, Feb 2, 2011 at 4:25 AM, Paul Ishenin wrote: > RequireDerivedFormResource := True Thanks, i fall with this mistakes before. But i like to be RequireDerivedFormResource := True by default, for old projects it must add RequireDerivedFormResource := False, that reduce the lines in the new

Re: [Lazarus] A change in LCL require your TCustomForm descendants to have a resource or to use a CreateNew constructor

2011-02-01 Thread Paul Ishenin
02.02.2011 9:28, dmitry boyarintsev wrote: Nice. Is it in the wiki? Yes but text there is not that big: http://wiki.lazarus.freepascal.org/Lazarus_0.99.0_release_notes#TCustomForm.Create_raises_an_exception_if_resource_is_not_found Best regards, Paul Ishenin -- __

Re: [Lazarus] A change in LCL require your TCustomForm descendants to have a resource or to use a CreateNew constructor

2011-02-01 Thread dmitry boyarintsev
Nice. Is it in the wiki? thanks, Dmitry -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

[Lazarus] A change in LCL require your TCustomForm descendants to have a resource or to use a CreateNew constructor

2011-02-01 Thread Paul Ishenin
Hello, Lazarus mailing list. I've changed the behavior of TCustomForm.Create constructor. Now it raises an exception if your TCustomForm descendant has no resource. 1. Why the change is needed. Historically TCustomForm has 2 constructors: Create() - for creating forms from resources and Crea

Re: [Lazarus] CGILazIDE cannot be found...

2011-02-01 Thread waldo kitty
On 2/1/2011 04:01, Sven Barth wrote: Am 01.02.2011 01:55, schrieb waldo kitty: On 1/31/2011 13:41, Sven Barth wrote: While adding the path to CompilerOptions/Paths/OtherUnitFiles is a possibilty I personally don't consider it the "clean" way. Open the Project Inspector and click the "plus". Sel

Re: [Lazarus] Use of Move()?

2011-02-01 Thread Bo Berglund
On Wed, 02 Feb 2011 00:00:35 +0100, Marc Weustink wrote: >> So somehow I am missing something important here... > >Move expects 2 untyped parameters, so dereference your pointers > > Move(Source^, Dst^, Count); // Source and Dst are pointers > Thanks! Finally my buffer handler works as expected

Re: [Lazarus] Use of Move()?

2011-02-01 Thread Marc Weustink
On 1-2-2011 23:51, Bo Berglund wrote: On Tue, 01 Feb 2011 23:33:58 +0100, Marc Weustink wrote: Just tested: program MoveTest; {$mode objfpc}{$H+} uses SysUtils; var S: String; I: Integer; P: Pointer; begin S := 'Bla'; S := S + S; P := @I; Move(S[1], P^, SizeOf(I));

Re: [Lazarus] Use of Move()?

2011-02-01 Thread Bo Berglund
On Tue, 01 Feb 2011 23:33:58 +0100, Marc Weustink wrote: > >Just tested: > >program MoveTest; >{$mode objfpc}{$H+} >uses > SysUtils; >var > S: String; > I: Integer; > P: Pointer; >begin > S := 'Bla'; > S := S + S; > P := @I; > Move(S[1], P^, SizeOf(I)); > > WriteLn(Format('%x %x

Re: [Lazarus] Use of Move()?

2011-02-01 Thread Marc Weustink
On 1-2-2011 23:11, Bo Berglund wrote: On Tue, 1 Feb 2011 21:18:57 +0100, Burkhard Carstens wrote: Am Dienstag, 1. Februar 2011 21:03 schrieb Bo Berglund: I think I have made an error. I have created a generalized buffer handler for my project and here I have this function to read data from

Re: [Lazarus] Use of Move()?

2011-02-01 Thread Bo Berglund
On Tue, 1 Feb 2011 21:18:57 +0100, Burkhard Carstens wrote: >Am Dienstag, 1. Februar 2011 21:03 schrieb Bo Berglund: >> I think I have made an error. >> I have created a generalized buffer handler for my project and here I >> have this function to read data from the buffer. >> >> function TSS

Re: [Lazarus] Use of Move()?

2011-02-01 Thread Burkhard Carstens
Am Dienstag, 1. Februar 2011 21:03 schrieb Bo Berglund: > I think I have made an error. > I have created a generalized buffer handler for my project and here I > have this function to read data from the buffer. > > function TSSCommBuf.Read(Dest: Pointer; Count: Cardinal): Cardinal; > var > nu

[Lazarus] Use of Move()?

2011-02-01 Thread Bo Berglund
I think I have made an error. I have created a generalized buffer handler for my project and here I have this function to read data from the buffer. function TSSCommBuf.Read(Dest: Pointer; Count: Cardinal): Cardinal; var num: Cardinal; begin num := FWriteIndex - FReadIndex; //Remaining da

Re: [Lazarus] cross-arm-wince buildbot is working or not?

2011-02-01 Thread bobby
On 2/1/2011 3:33 PM, Vincent Snijders wrote: 2011/1/29 bobby: Hi, what happened to the wince/arm crosscompiler snapshots? The last one is 3 days old. Dunno if it is a must to have the same revision of both the crosscompiler and compiler, but I can't compile my WinCE apps now. I got some messag

Re: [Lazarus] Lazarus Project Group

2011-02-01 Thread silvioprog
2011/2/1 Sven Barth > Am 01.02.2011 14:35, schrieb Marco van de Voort: > >> If I change from checkout1 to checkout2 or from project to project, files >> opened that exist in both source and the target project remain opened, but >> are the wrong versions. >> > > That's why I have not experienced t

Re: [Lazarus] Lazarus Project Group

2011-02-01 Thread silvioprog
2011/2/1 > > I never use them, since switching project without completely closing the >>> former project on Delphi is troublesome if you use relative paths. >>> >> >> I have never experienced something like this. Would you please explain? >> > > +1. I use them since 12 years, with 50+ projects in

Re: [Lazarus] Lazarus Project Group

2011-02-01 Thread silvioprog
2011/2/1 [...] (I use them a lot in Delphi, and miss them sorely in Lazarus). +1. But I kept the design in my todo list. > Wow \o/. > Michael. > Thanks Michael. -- *Silvio Clécio* *Blog.* blog.silvioprog.com.br *Twitter.* twitter.com/silvioprog -- __

Re: [Lazarus] Lazarus Project Group

2011-02-01 Thread silvioprog
2011/2/1 Sven Barth > Already requested some time ago by me here: > http://bugs.freepascal.org/view.php?id=18518 > > Regards, > Sven > "(0045306) Paul Ishenin (manager) 2011-01-19 12:54 Let's think about this feature after 1.0 release". After 1.0... D': Thanks, I will wait anxiously for it.

Re: [Lazarus] Lazarus Project Group

2011-02-01 Thread silvioprog
2011/2/1 Bo Berglund > > I also use project groups a lot in Delphi. The advantage is that you > can instantly switch from one project to another without reloading all > the files etc. We work (in Delphi) with applications that have other > closely related binaries like dll:s and test applications

Re: [Lazarus] Lazarus Project Group

2011-02-01 Thread silvioprog
2011/2/1 Graeme Geldenhuys > As a work-around, increase the 'recent file' and 'recent project' count > from 5 (default) to say 20. This then allows you to easily get to all > your common projects. > > Regards, > - Graeme - > > -- > fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal >

Re: [Lazarus] Lazarus Project Group

2011-02-01 Thread silvioprog
2011/2/1 Hans-Peter Diettrich > > What special features of a ProjectGroup are you missing? > > DoDi > Keep and manage my projects (about 25) in a single file. ( /o/o/ AllProjects.*lpg* \o\o\o\ ) -- *Silvio Clécio* *Blog.* blog.silvioprog.com.br *Twitter.* twitter.com/silvioprog -- __

Re: [Lazarus] Lazarus Project Group

2011-02-01 Thread silvioprog
2011/1/31 Paul Ishenin > 01.02.2011 6:45, silvioprog wrote: > >> x( >> > > There are many features which are nice to have but we should release 1.0 > version some day. We can't implement everything for 1.0 version. Let's > postpone something like this one. > > Best regards, > Paul Ishenin > So,

Re: [Lazarus] cross-arm-wince buildbot is working or not?

2011-02-01 Thread Vincent Snijders
2011/1/29 bobby : > Hi, > > what happened to the wince/arm crosscompiler snapshots? > The last one is 3 days old. > > Dunno if it is a must to have the same revision of both the crosscompiler > and compiler, but I can't compile my WinCE apps now. > I got some message about ppu files being older tha

Re: [Lazarus] Lazarus Project Group

2011-02-01 Thread Sven Barth
Am 01.02.2011 14:35, schrieb Marco van de Voort: If I change from checkout1 to checkout2 or from project to project, files opened that exist in both source and the target project remain opened, but are the wrong versions. That's why I have not experienced that problem yet ^^ Regards, Sven --

Re: [Lazarus] Lazarus Project Group

2011-02-01 Thread Marco van de Voort
On Tue, Feb 01, 2011 at 01:28:05PM +0100, Sven Barth wrote: > >> project group concept to keep these easily accessible. > > > > I never use them, since switching project without completely closing the > > former project on Delphi is troublesome if you use relative paths. > > I have never experienc

Re: [Lazarus] Lazarus Project Group

2011-02-01 Thread Graeme Geldenhuys
>> I have never experienced something like this. Would you please explain? > > +1. I use them since 12 years, with 50+ projects in one group. Never a > glitch. +1 In my years of using Delphi 7, I never had a problem with project groups. Regards, - Graeme - -- fpGUI Toolkit - a cross-platfo

Re: [Lazarus] Error while compiling resources...

2011-02-01 Thread Bo Berglund
On Tue, 01 Feb 2011 15:14:13 +0700, Paul Ishenin wrote: >> lazarus_0_9_30_fixes. >> Maybe there is a change in behaviour between _0_9_29_fixes and the new >> one? > >Please read this article again: >http://lazarus-dev.blogspot.com/2010/02/work-on-0930-changes-in-resource.html > >There are two w

Re: [Lazarus] Lazarus Project Group

2011-02-01 Thread michael . vancanneyt
On Tue, 1 Feb 2011, Sven Barth wrote: Am 01.02.2011 13:27, schrieb Marco van de Voort: On Tue, Feb 01, 2011 at 09:03:43AM +0100, Bo Berglund wrote: No. What special features of a ProjectGroup are you missing? I also use project groups a lot in Delphi. The advantage is that you can instan

Re: [Lazarus] Lazarus Project Group

2011-02-01 Thread Sven Barth
Am 01.02.2011 13:27, schrieb Marco van de Voort: On Tue, Feb 01, 2011 at 09:03:43AM +0100, Bo Berglund wrote: No. What special features of a ProjectGroup are you missing? I also use project groups a lot in Delphi. The advantage is that you can instantly switch from one project to another wit

Re: [Lazarus] Lazarus Project Group

2011-02-01 Thread Marco van de Voort
On Tue, Feb 01, 2011 at 09:03:43AM +0100, Bo Berglund wrote: > >No. > > > >What special features of a ProjectGroup are you missing? > > > > I also use project groups a lot in Delphi. The advantage is that you > can instantly switch from one project to another without reloading all > the files etc.

Re: [Lazarus] Custom composite components issue with latest Lazarus

2011-02-01 Thread Michael Schnell
On 02/01/2011 12:13 PM, Mattias Gaertner wrote: Maybe you set 'x11 '? I did not touch this setting before it stopped working. Moreover I never typed in the text but selected it from the list. So I obviously was hit by some kind of glitch during the transition of the LCL packet makeup. If it h

Re: [Lazarus] Custom composite components issue with latest Lazarus

2011-02-01 Thread Mattias Gaertner
On Tue, 01 Feb 2011 12:04:53 +0100 Michael Schnell wrote: > On 02/01/2011 11:56 AM, Mattias Gaertner wrote: > > > > I set LCLWidgeType to fpgui, click ok, press F9, > That is exactly what I do. > > the fpgui > > widgetset is compiled and I get a lcl/fpgui program. > > > > Have you set other macro

Re: [Lazarus] Custom composite components issue with latest Lazarus

2011-02-01 Thread Michael Schnell
On 02/01/2011 11:56 AM, Mattias Gaertner wrote: I set LCLWidgeType to fpgui, click ok, press F9, That is exactly what I do. the fpgui widgetset is compiled and I get a lcl/fpgui program. Have you set other macros? Yep. fpGUIPlatform is set to x11 I suppose this is necessary. After deleting

Re: [Lazarus] Custom composite components issue with latest Lazarus

2011-02-01 Thread Michael Schnell
On 02/01/2011 11:43 AM, Graeme Geldenhuys wrote: No idea (if you say it worked before - when?). I suppose some search directory is not set correctly when I select fpGUI as a Widget Type. -Michael -- ___ Lazarus mailing list Lazarus@lists.lazarus.f

Re: [Lazarus] Custom composite components issue with latest Lazarus

2011-02-01 Thread Mattias Gaertner
On Tue, 01 Feb 2011 11:51:28 +0100 Michael Schnell wrote: > On 02/01/2011 11:43 AM, Graeme Geldenhuys wrote: > > > > No idea (if you say it worked before - when?). > Before the Widget Type selection had been moved into the "Build Mode" panel It works here. I set LCLWidgeType to fpgui, click ok,

Re: [Lazarus] Custom composite components issue with latest Lazarus

2011-02-01 Thread Michael Schnell
On 02/01/2011 11:43 AM, Graeme Geldenhuys wrote: No idea (if you say it worked before - when?). Before the Widget Type selection had been moved into the "Build Mode" panel -Michael -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org htt

Re: [Lazarus] Custom composite components issue with latest Lazarus

2011-02-01 Thread Graeme Geldenhuys
Op 2011-02-01 12:43, Graeme Geldenhuys het geskryf: > > I have supplied any patches to Lazarus to Sorry, typo... That should read: "I haven't supplied any patches to Lazarus to..." Regards, - Graeme - -- fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal http://fpgui.sourc

Re: [Lazarus] Custom composite components issue with latest Lazarus

2011-02-01 Thread Michael Schnell
On 02/01/2011 11:38 AM, Mattias Gaertner wrote: The unit is here: lcl/interfaces/fpgui/corelib/x11/fpg_impl.pas it is (as a symlink to the fpGUI git directory). it very short :). -Michael -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepasca

Re: [Lazarus] Custom composite components issue with latest Lazarus

2011-02-01 Thread Graeme Geldenhuys
Op 2011-02-01 12:41, Michael Schnell het geskryf: >> The unit is here: >> lcl/interfaces/fpgui/corelib/x11/fpg_impl.pas >> >> If not, then take a look at the lazarus wiki page about fpgui. > it did work but stopped to do so. > > That is why I think, Graeme should know about it. No idea (if you sa

Re: [Lazarus] Error while compiling resources...

2011-02-01 Thread Graeme Geldenhuys
Op 2011-02-01 12:28, Mattias Gaertner het geskryf: > > I moved the FPCMessagesHelpDB to the ideintf unit idehelpintf. > You can alter it or replace it. Thanks, I'll go take a look at that. Regards, - Graeme - -- fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal http://fpgui.so

Re: [Lazarus] Custom composite components issue with latest Lazarus

2011-02-01 Thread Michael Schnell
On 02/01/2011 11:38 AM, Mattias Gaertner wrote: The unit is here: lcl/interfaces/fpgui/corelib/x11/fpg_impl.pas If not, then take a look at the lazarus wiki page about fpgui. it did work but stopped to do so. That is why I think, Graeme should know about it. -Michael --

Re: [Lazarus] Custom composite components issue with latest Lazarus

2011-02-01 Thread Mattias Gaertner
On Tue, 01 Feb 2011 11:29:26 +0100 Michael Schnell wrote: > Graeme, > > While with the most recent Lazarus svn and fpGUI git sources I can > compile and my Event Test demo program for the Build Modes "gtk" and > "gtk 2", when switching the LCLWidgetType Macro to "fpGUI" I get: > > "fpgui/core

Re: [Lazarus] Custom composite components issue with latest Lazarus

2011-02-01 Thread Michael Schnell
Graeme, While with the most recent Lazarus svn and fpGUI git sources I can compile and my Event Test demo program for the Build Modes "gtk" and "gtk 2", when switching the LCLWidgetType Macro to "fpGUI" I get: "fpgui/corelib/fpg_base.pas(27,3) Fatal: Can't find unit fpg_impl used by fpg_base

Re: [Lazarus] Error while compiling resources...

2011-02-01 Thread Mattias Gaertner
On Tue, 01 Feb 2011 12:08:00 +0200 Graeme Geldenhuys wrote: > Op 2011-02-01 11:17, Mattias Gaertner het geskryf: > > > > This might help: > > http://wiki.lazarus.freepascal.org/Creating_IDE_Help#Help_for_Messages > > > Is there a way to hook into external (non-wiki) help systems too? eg: > Say

Re: [Lazarus] Error while compiling resources...

2011-02-01 Thread Graeme Geldenhuys
Op 2011-02-01 11:17, Mattias Gaertner het geskryf: > > This might help: > http://wiki.lazarus.freepascal.org/Creating_IDE_Help#Help_for_Messages Is there a way to hook into external (non-wiki) help systems too? eg: Say I have created detailed Compiler Messages Help in INF help format? Thus by pr

Re: [Lazarus] Error while compiling resources...

2011-02-01 Thread Mattias Gaertner
On Tue, 01 Feb 2011 10:07:47 +0100 Sven Barth wrote: > Am 01.02.2011 08:47, schrieb Graeme Geldenhuys: > > Op 2011-02-01 08:46, Paul Ishenin het geskryf: > >> > >> As I know Lazarus does not have a feature to show a help for compiler > >> error/warnings/hints. > > > > Well, my copy of Lazarus 0.9

Re: [Lazarus] Lazarus Project Group

2011-02-01 Thread Sven Barth
Am 01.02.2011 00:07, schrieb silvioprog: Hi guys, In Delphi7 I use only one file (bpg) to manage my projects (to open projects, compiles, deletes etc.) Currently this feature is present in Lazarus? Already requested some time ago by me here: http://bugs.freepascal.org/view.php?id=18518 Rega

Re: [Lazarus] Error while compiling resources...

2011-02-01 Thread Sven Barth
Am 01.02.2011 08:47, schrieb Graeme Geldenhuys: Op 2011-02-01 08:46, Paul Ishenin het geskryf: As I know Lazarus does not have a feature to show a help for compiler error/warnings/hints. Well, my copy of Lazarus 0.9.29 (.30 fixes branch) does indeed show such help. It's small, but it's there.

Re: [Lazarus] CGILazIDE cannot be found...

2011-02-01 Thread Sven Barth
Am 01.02.2011 01:55, schrieb waldo kitty: On 1/31/2011 13:41, Sven Barth wrote: While adding the path to CompilerOptions/Paths/OtherUnitFiles is a possibilty I personally don't consider it the "clean" way. Open the Project Inspector and click the "plus". Select the Tab "Dependency" and search fo

Re: [Lazarus] Custom composite components issue with latest Lazarus

2011-02-01 Thread Paul Ishenin
01.02.2011 15:34, Graeme Geldenhuys wrote: I should have guessed - that's the "default" answer to all my questions here. :-) If Lazarus and FPC will not be Delphi compatible they lose big amount of current and potential users. I would probably never join Lazarus and FPC project if I had big

Re: [Lazarus] Custom composite components issue with latest Lazarus

2011-02-01 Thread Graeme Geldenhuys
Op 2011-02-01 10:26, Paul Ishenin het geskryf: > > This is RTL OK, thanks for pointing it out. I don't dabble to much in TComponent and other Delphi-like friends, so excuse my ignorance is this area. :) Regards, - Graeme - -- fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal

Re: [Lazarus] Custom composite components issue with latest Lazarus

2011-02-01 Thread Graeme Geldenhuys
Op 2011-02-01 10:31, Martin Schreiber het geskryf: >> > It is Delphi compatible AFAIK. ;-) I should have guessed - that's the "default" answer to all my questions here. :-) Regards, - Graeme - -- fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal http://fpgui.sourceforge.net/

Re: [Lazarus] Lazarus Project Group

2011-02-01 Thread michael . vancanneyt
On Tue, 1 Feb 2011, Bo Berglund wrote: On Tue, 01 Feb 2011 04:28:23 +0100, Hans-Peter Diettrich wrote: silvioprog schrieb: In Delphi7 I use only one file (bpg) to manage my projects (to open projects, compiles, deletes etc.) Currently this feature is present in Lazarus? No. What specia

Re: [Lazarus] Custom composite components issue with latest Lazarus

2011-02-01 Thread Martin Schreiber
On Tuesday, 1. February 2011 09.25:13 Graeme Geldenhuys wrote: > Op 2011-02-01 10:19, Martin Schreiber het geskryf: > > Please use > > " > > procedure SetSubComponent(ASubComponent: Boolean); > > " > > Thanks, that worked! Since when do you know such a lot about LCL? ;-) > It is Delphi compati

Re: [Lazarus] Custom composite components issue with latest Lazarus

2011-02-01 Thread Paul Ishenin
01.02.2011 15:25, Graeme Geldenhuys пишет: Thanks, that worked! Since when do you know such a lot about LCL? ;-) This is RTL Best regards, Paul Ishenin -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepasca

Re: [Lazarus] Custom composite components issue with latest Lazarus

2011-02-01 Thread Graeme Geldenhuys
Op 2011-02-01 10:19, Martin Schreiber het geskryf: > Please use > " > procedure SetSubComponent(ASubComponent: Boolean); > " Thanks, that worked! Since when do you know such a lot about LCL? ;-) Regards, - Graeme - -- fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal http

Re: [Lazarus] Custom composite components issue with latest Lazarus

2011-02-01 Thread Paul Ishenin
01.02.2011 15:10, Graeme Geldenhuys wrote: ---8<---8<---8<---8<---8<--- {$IFDEF FPC} Include(FLabel.ComponentStyle, csSubComponent); Include(FLabel.ControlStyle, csNoDesignSelectable); Include(FWinControl.ComponentStyle, csSubComponent); Incl

Re: [Lazarus] Custom composite components issue with latest Lazarus

2011-02-01 Thread Martin Schreiber
On Tuesday, 1. February 2011 09.10:01 Graeme Geldenhuys wrote: > Hi, > > tiOPF v2 has a few "unsupported" LCL components. They are basically > composite components (eg: a panel with other embedded components). > Before, the following code compiled without problems. A user reported > that it doesn't

Re: [Lazarus] Error while compiling resources...

2011-02-01 Thread Paul Ishenin
01.02.2011 15:00, Bo Berglund wrote: The question is from where it came, this application was started when I used an earlier version of Lazarus and at first I used the form only to test some endian conversion functions I need to use for the data from the attached equipment. Then yesterday I chang

[Lazarus] Custom composite components issue with latest Lazarus

2011-02-01 Thread Graeme Geldenhuys
Hi, tiOPF v2 has a few "unsupported" LCL components. They are basically composite components (eg: a panel with other embedded components). Before, the following code compiled without problems. A user reported that it doesn't compile any more. ---8<---8<---8<---8<--

Re: [Lazarus] Exception with no stack trace [was: Can I be sure that timer and synchronize never fire at once?]

2011-02-01 Thread Luca Olivetti
En/na Luca Olivetti ha escrit: Hello, I'm trying to debug a strange crash in an application (it's strange because the exception dialog appears and then disappears almost instantly without clicking on any button, so the customer cannot tell me the reason of the exception). I added as an Appli

Re: [Lazarus] Lazarus Project Group

2011-02-01 Thread Bo Berglund
On Tue, 01 Feb 2011 04:28:23 +0100, Hans-Peter Diettrich wrote: >silvioprog schrieb: > >> In Delphi7 I use only one file (bpg) to manage my projects (to open >> projects, compiles, deletes etc.) Currently this feature is present in >> Lazarus? > >No. > >What special features of a ProjectGroup a

Re: [Lazarus] Error while compiling resources...

2011-02-01 Thread Bo Berglund
On Tue, 01 Feb 2011 06:07:25 +0700, Paul Ishenin wrote: >01.02.2011 5:28, Bo Berglund wrote: >> {$IFDEF WINDOWS}{$R commtest.rc}{$ENDIF} >resource which was added by lazarus 0.9.26 >> {$R *.res} >added by lazarus 0.9.30? > >Remove {$IFDEF WINDOWS}{$R commtest.rc}{$ENDIF} and try again. > I comme