Re: [Lazarus] Write XML

2009-12-17 Thread Michael Van Canneyt
On Thu, 17 Dec 2009, Graeme Geldenhuys wrote: Arí Ricardo Ody wrote: via SQL SELECT and the method convert columns to XML and write the XML data to disk. The tiOPF project (available on SourceForge) can do this. It should be quite easy to make the specific unit stand-alone without depending

Re: [Lazarus] Write XML

2009-12-17 Thread Graeme Geldenhuys
Michael Van Canneyt wrote: > > Free Pascal can do this directly, look at the fpsimplexmlexport.pp unit. FPC can really do everything out-of-the-box! Why would anybody still choose Delphi over FPC - I have no idea. :-) Regards, - Graeme - -- fpGUI Toolkit - a cross-platform GUI toolkit usi

Re: [Lazarus] GTK2 changed to single-handle-per-form design

2009-12-17 Thread Graeme Geldenhuys
I think Lance meant this for the mailing list and not to my personal account. 2009/12/17 Lance Collins : > >> >> "... buy a larger monitor"  :-)  I like the way you think. Quick and easy >> solutions. > > I can buy a 24 inch 1080p LCD monitor for $A209. > > Perhaps Lazarus could standardize on 26

Re: [Lazarus] ExtPascal - Any one has an opensource system?

2009-12-17 Thread Osvaldo Filho
http://extpascal.call.inf.br/ExtPToolkitStatus.html 2009/12/16 Michael Joyner : > Haven't had a chance yet to retry to document all steps to see where I am > going wrong. > > On Wed, Dec 16, 2009 at 13:36, Phil Hess wrote: >> >> Michael, >> >> But what "failed"? Can't read your mind. >> >> If the

Re: [Lazarus] ExtPascal - Any one has an opensource system?

2009-12-17 Thread Osvaldo Filho
Please, it is very good, but the problem of version is very bad. I can not workaround. Where is ExtForm ? Where is ExtGlobal? = ExtJS 3.0.0 Toolkit from subversion Hint: Start of reading config file C:\d_e\lazarus\fpc\2.3.1\bin\i386-win32\fpc.cfg Hint: End of reading

Re: [Lazarus] GTK2 changed to single-handle-per-form design

2009-12-17 Thread Marco van de Voort
On Thu, Dec 17, 2009 at 01:47:18PM +0200, Graeme Geldenhuys wrote: > 2009/12/17 Lance Collins : > >> "... buy a larger monitor" ??:-) ??I like the way you think. Quick and easy > >> solutions. > > > > I can buy a 24 inch 1080p LCD monitor for $A209. > > > > Perhaps Lazarus could standardize on 26

Re: [Lazarus] Name of current project in taskbar?

2009-12-17 Thread Mattias Gaertner
Implemented: http://wiki.lazarus.freepascal.org/IDE_Window:_Environment_Options#IDE_title_starts_with_project_name Mattias -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] ExtPascal - Any one has an opensource system?

2009-12-17 Thread Phil Hess
That document is not up to date for the SVN source. Please refer to the one here for now: http://web.fastermac.net/~MacPgmr/ExtPascal/ You can also use the .zip file for ExtP Toolkit if you don't want to get it from SVN (as part of ExtPascal checkout). Thanks. -Phil - "Osvaldo Filho"

Re: [Lazarus] ExtPascal - Any one has an opensource system?

2009-12-17 Thread Phil Hess
I believe that app (d3tkjdt.lpr?) is written to an earlier version of ExtPascal. ExtPascal 0.9.7 that you're using no longer includes ExtGlobal unit. Thanks. -Phil - "Osvaldo Filho" wrote: > Please, it is very good, but the problem of version is very bad. I > can > not workaround. > >

Re: [Lazarus] Name of current project in taskbar?

2009-12-17 Thread Graeme Geldenhuys
Mattias Gaertner wrote: > Implemented: > > http://wiki.lazarus.freepascal.org/IDE_Window:_Environment_Options#IDE_title_starts_with_project_name Thank you very much Mattias. Perfect! Regards, - Graeme - -- fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal http://opensoft.homei

Re: [Lazarus] Name of current project in taskbar?

2009-12-17 Thread Paul Ishenin
Mattias Gaertner wrote: Implemented: http://wiki.lazarus.freepascal.org/IDE_Window:_Environment_Options#IDE_title_starts_with_project_name It changes the titlebar and not on the taskbar (as the topic name). Best regards, Paul Ishenin. -- ___ Laza

Re: [Lazarus] Name of current project in taskbar?

2009-12-17 Thread Mattias Gaertner
On Thu, 17 Dec 2009 21:42:10 +0700 Paul Ishenin wrote: > Mattias Gaertner wrote: > > Implemented: > > > > http://wiki.lazarus.freepascal.org/IDE_Window:_Environment_Options#IDE_title_starts_with_project_name > > > It changes the titlebar and not on the taskbar (as the topic name). It does und

Re: [Lazarus] ExtPascal - Any one has an opensource system?

2009-12-17 Thread Bee Jay
Please, it is very good, but the problem of version is very bad. I can not workaround. It won't work with latest SVN and ExtJS v.3.0. As I told you in my previous email, it was using ExtPascal v.0.9.4 (which is based on ExtJS 2.2.1). Though it may not use the latest technology, but I think

[Lazarus] Dynamic creation of TTrackBar

2009-12-17 Thread Brad Campbell
G'day all, I'm currently using "Lazarus 0.9.29 r22679 FPC 2.2.5 i386-linux-gtk 2 (beta)". On a form, I'm creating 30-40 instances of a TTrackBar dynamically. If, at design time I have a TTrackBar on the form, this all goes swimingly. If, however there is no TTrackBar on the form, when I run th

Re: [Lazarus] Dynamic creation of TTrackBar

2009-12-17 Thread Mattias Gaertner
On Thu, 17 Dec 2009 23:37:21 +0800 Brad Campbell wrote: > G'day all, > > I'm currently using "Lazarus 0.9.29 r22679 FPC 2.2.5 i386-linux-gtk 2 (beta)". > > On a form, I'm creating 30-40 instances of a TTrackBar dynamically. If, at > design time I have a > TTrackBar on the form, this all goes

Re: [Lazarus] Dynamic creation of TTrackBar

2009-12-17 Thread Duncan Parsons
Not got Laz/fpc code near me, but my guess is that when you have a TTrackBar on the form, the unit that it's housed in will be added to the uses list, and if you delete it (provided no other referenced classes are included) it may get removed. Find which unit TTrackBar is declared in and add it to

Re: [Lazarus] Dynamic creation of TTrackBar

2009-12-17 Thread Brad Campbell
Mattias Gaertner wrote: On Thu, 17 Dec 2009 23:37:21 +0800 Brad Campbell wrote: G'day all, I'm currently using "Lazarus 0.9.29 r22679 FPC 2.2.5 i386-linux-gtk 2 (beta)". On a form, I'm creating 30-40 instances of a TTrackBar dynamically. If, at design time I have a TTrackBar on the form, th

Re: [Lazarus] Dynamic creation of TTrackBar

2009-12-17 Thread Mattias Gaertner
On Thu, 17 Dec 2009 23:58:59 +0800 Brad Campbell wrote: > Mattias Gaertner wrote: > > On Thu, 17 Dec 2009 23:37:21 +0800 > > Brad Campbell wrote: > > > >> G'day all, > >> > >> I'm currently using "Lazarus 0.9.29 r22679 FPC 2.2.5 i386-linux-gtk 2 > >> (beta)". > >> > >> On a form, I'm creating

Re: [Lazarus] Dynamic creation of TTrackBar

2009-12-17 Thread Brad Campbell
Duncan Parsons wrote: Not got Laz/fpc code near me, but my guess is that when you have a TTrackBar on the form, the unit that it's housed in will be added to the uses list, and if you delete it (provided no other referenced classes are included) it may get removed. Find which unit TTrackBar is d

Re: [Lazarus] Dynamic creation of TTrackBar

2009-12-17 Thread Brad Campbell
Mattias Gaertner wrote: Add unit comctrls to uses clauses. uses Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs, Menus, StdCtrls, ExtCtrls, ComCtrls, UnixSerial, BaseUnix, PortScan, DateUtils, Math; Regards, Brad -- Dolphins are so intelligent that within a f

Re: [Lazarus] Dynamic creation of TTrackBar

2009-12-17 Thread Brad Campbell
Brad Campbell wrote: Mattias Gaertner wrote: Add unit comctrls to uses clauses. uses Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs, Menus, StdCtrls, ExtCtrls, ComCtrls, UnixSerial, BaseUnix, PortScan, DateUtils, Math; Just to check I removed ComCtrls an

Re: [Lazarus] Dynamic creation of TTrackBar

2009-12-17 Thread Brad Campbell
Brad Campbell wrote: Brad Campbell wrote: Mattias Gaertner wrote: Add unit comctrls to uses clauses. uses Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs, Menus, StdCtrls, ExtCtrls, ComCtrls, UnixSerial, BaseUnix, PortScan, DateUtils, Math; Just to check

Re: [Lazarus] Dynamic creation of TTrackBar

2009-12-17 Thread Mattias Gaertner
On Thu, 17 Dec 2009 23:58:59 +0800 Brad Campbell wrote: > Mattias Gaertner wrote: > > On Thu, 17 Dec 2009 23:37:21 +0800 > > Brad Campbell wrote: > > > >> G'day all, > >> > >> I'm currently using "Lazarus 0.9.29 r22679 FPC 2.2.5 i386-linux-gtk 2 > >> (beta)". > >> > >> On a form, I'm creating

Re: [Lazarus] Dynamic creation of TTrackBar

2009-12-17 Thread Mattias Gaertner
On Fri, 18 Dec 2009 00:28:03 +0800 Brad Campbell wrote: >[...] > When I remove the component from the form, it's not recompiling the lrs file. > If I manually create the .lrs file from the .lfm file before I compile the > problem goes away. > > Now I just need to figure out what I've damaged th

Re: [Lazarus] Dynamic creation of TTrackBar

2009-12-17 Thread Brad Campbell
Mattias Gaertner wrote: On Fri, 18 Dec 2009 00:28:03 +0800 Brad Campbell wrote: [...] When I remove the component from the form, it's not recompiling the lrs file. If I manually create the .lrs file from the .lfm file before I compile the problem goes away. Now I just need to figure out what

Re: [Lazarus] ExtPascal - Any one has an opensource system?

2009-12-17 Thread Osvaldo Filho
How can i update it? Anybudy know? 2009/12/17 Bee Jay : >> Please, it is very good, but the problem of version is very bad. I can >> not workaround. > > It won't work with latest SVN and ExtJS v.3.0. As I told you in my previous > email, it was using ExtPascal v.0.9.4 (which is based on ExtJS 2.2.

Re: [Lazarus] Dynamic creation of TTrackBar

2009-12-17 Thread Brad Campbell
Brad Campbell wrote: Mattias Gaertner wrote: On Fri, 18 Dec 2009 00:28:03 +0800 Brad Campbell wrote: [...] When I remove the component from the form, it's not recompiling the lrs file. If I manually create the .lrs file from the .lfm file before I compile the problem goes away. Now I just

Re: [Lazarus] ExtPascal - Any one has an opensource system?

2009-12-17 Thread Osvaldo Filho
What is equal to ExtForm and ExtGlobal? 2009/12/17 Osvaldo Filho : > How can i update it? Anybudy know? > > 2009/12/17 Bee Jay : >>> Please, it is very good, but the problem of version is very bad. I can >>> not workaround. >> >> It won't work with latest SVN and ExtJS v.3.0. As I told you in my p

[Lazarus] Form always 400 x 300 initially

2009-12-17 Thread Phil Hess
In my TCustomForm-based design control, I would like it to have an initial size of my choosing rather than the default 400 wide, 300 high. It appears as though these values are hardwired in the FormEditor1.CreateComponent call in TMainIDE.CreateNewForm, ignoring anything that I set Width or Heig

Re: [Lazarus] Form always 400 x 300 initially

2009-12-17 Thread Matt Shaffer
I'm guessing then that setting the width and height OnCreate won't work because that's where they're overridden; a very messy solution would be to set a TTimer to 5ms or so and then change the width. On Thu, Dec 17, 2009 at 1:40 PM, Phil Hess wrote: > In my TCustomForm-based design control, I wo

[Lazarus] Allowing multiple axes in TAChart

2009-12-17 Thread Albert Zuurbier
I am working on allowing multiple axes in TAChart (issue 0013832). I am working with the idea to have multiple x and multiple y axes for line series. At this moment the axes do not have minimum and maximum values (I've submitted issue 0015371). As far as I know, the minimum and maximum values

Re: [Lazarus] GTK2 changed to single-handle-per-form design

2009-12-17 Thread John
Marco van de Voort wrote: On Thu, Dec 17, 2009 at 01:47:18PM +0200, Graeme Geldenhuys wrote: 2009/12/17 Lance Collins : "... buy a larger monitor" ??:-) ??I like the way you think. Quick and easy solutions. I can buy a 24 inch 1080p LCD monitor for $A209. Perhaps Lazaru

Re: [Lazarus] GTK2 changed to single-handle-per-form design

2009-12-17 Thread Graeme Geldenhuys
John wrote: > this century! (Not sure why we still mostly refer to monitors in inches > when Australia has been "metrified" for decades.) It's those fn Americans. :-) I think they are one of the last countries in the world (read stubborn) that are still stuck with inches, miles, lbs etc... O

Re: [Lazarus] GTK2 changed to single-handle-per-form design

2009-12-17 Thread waldo kitty
Graeme Geldenhuys wrote: John wrote: this century! (Not sure why we still mostly refer to monitors in inches when Australia has been "metrified" for decades.) It's those fn Americans. :-) I think they are one of the last countries in the world (read stubborn) that are still stuck with inc