Re: [lazarus] New bitmap :-)

2007-12-22 Thread Christian U.
Thanks, added to SVN. Looks great :) regards Christian Bee schrieb: Just for anyone who interested to 'synchronize' VTV's icons with current theme. Of course, it's unofficial. ;) -Bee- has Bee.ography at: http://beeography.wordpress.com

Re: [lazarus] Working with different versions of lazarus

2007-12-22 Thread ik
On Dec 21, 2007 12:27 AM, Vincent Snijders [EMAIL PROTECTED] wrote: ik schreef: Hello, My stable version of lazarus is 0.9.24, however I do check Lazarus svn from time to time, and usually I change the .lazarus directory depends on the version I wish to check. Is there a way to tell

Re: [lazarus] Can I use Lazarus IDE with a different Component Library?

2007-12-22 Thread Giuliano Colla
Mattias Gaertner ha scritto: [...] For example the KOL package is a visual component library similar to the LCL optimized for smart linking. Because the unit names and class names are the same you can use lazarus to create/edit KOL forms. The trick is that the user (here: programmer) does not

Re: [lazarus] Working with different versions of lazarus

2007-12-22 Thread Vincent Snijders
ik schreef: On Dec 21, 2007 12:27 AM, Vincent Snijders [EMAIL PROTECTED] wrote: ik schreef: Hello, My stable version of lazarus is 0.9.24, however I do check Lazarus svn from time to time, and usually I change the .lazarus directory depends on the version I wish to check. Is there a way to

Re: [lazarus] Can I use Lazarus IDE with a different Component Library?

2007-12-22 Thread Mattias Gaertner
On Sat, 22 Dec 2007 13:01:02 +0100 Giuliano Colla [EMAIL PROTECTED] wrote: Mattias Gaertner ha scritto: [...] For example the KOL package is a visual component library similar to the LCL optimized for smart linking. Because the unit names and class names are the same you can use lazarus

[lazarus] XML Config

2007-12-22 Thread Igor Pokorny
Hello friends, I would like to know how to open existing XML file for TXMLConfig. Thomas Zastrow's tutorial suggests to use cfg := TXMLConfig.create('myconfig.xml'); but the compilator complains because TXMLConfig = class(TComponent) . constructor Create(AOwner: TComponent); override;

Re: [lazarus] XML Config

2007-12-22 Thread ik
Try this: cfg: TXMLConfig.Create(nil); cfg.Filename := 'myconfig.xml'; Ido On Dec 22, 2007 10:42 PM, Igor Pokorny [EMAIL PROTECTED] wrote: Hello friends, I would like to know how to open existing XML file for TXMLConfig. Thomas Zastrow's tutorial suggests to use cfg :=

[lazarus] XMLConfig

2007-12-22 Thread Igor Pokorny
Hello friends, I would like to know how to open existing XML file for TXMLConfig. Thomas Zastrow's tutorial suggests to use cfg := TXMLConfig.create('myconfig.xml'); but the compilator complains because TXMLConfig = class(TComponent) . constructor Create(AOwner: TComponent); override;

Re: [lazarus] XML Config

2007-12-22 Thread Igor Pokorny
Thanks, it realy works. I am probably too old to understand such constructions, it's over of my imagination. I was certain objects in programming mirror the real world. Such construction is like to get married and to select a wife after a marriage. Strange Igor On Dec 22, 2007 9:53 PM, ik

Re: [lazarus] REQ: include LazReport and VirtualTV in bigide

2007-12-22 Thread Marco van de Voort
On Thu, Dec 20, 2007 at 08:33:53PM +0700, Paul Ishenin wrote: Lukas Gradl wrote: For Zeos and Indy I disagree - there are working DB-Components in the standard-set and socket programming is nothing for a beginner. iirc, both zeos and indy are non-visual components, so I think you can ask

Re: [lazarus] XML Config

2007-12-22 Thread Andrew Haines
Igor Pokorny wrote: Thanks, it realy works. I am probably too old to understand such constructions, it's over of my imagination. I was certain objects in programming mirror the real world. Such construction is like to get married and to select a wife after a marriage. Strange Igor

Re: [lazarus] XML Config

2007-12-22 Thread Sergei Gorelkin
Igor Pokorny wrote: Thanks, it realy works. I am probably too old to understand such constructions, it's over of my imagination. I was certain objects in programming mirror the real world. Such construction is like to get married and to select a wife after a marriage. Strange In real world,

Re: [lazarus] XML Config

2007-12-22 Thread Andrew Haines
Sergei Gorelkin wrote: Putting humour aside, TXMLConfig was initially designed as in Thomas's tutorial, but later it was changed to a TComponent descendant. This enables you to drop it on a form and assign its properties in the Object Inspector. However, being a TComponent descendant requires