[Lazarus] Linux service

2013-11-27 Thread Antonio Fortuny
Hi Folks. I have created a service which has to run into Windows and Linux servers. The program runs OK on both OS and the service runs nicely in Windows (32 and 64). I'm only a little bit stuck onto an UBUNTU platform. I've managed to launch and stop the service on an OpenSuse platform

[Lazarus] [ANN] FPSpreadsheet date support - success story

2013-11-27 Thread Reinier Olislagers
Hi all, I've looked into adding date/time support for BIFF8/XLS and seem to have it working. As long as I'm busy with fpspreadsheet, I'm incorporating some other fixes I had going and added an FPCUnit test suite to check against regressions. When I've got the tests extended some more and have

Re: [Lazarus] Linux service

2013-11-27 Thread Michael Van Canneyt
On Wed, 27 Nov 2013, Antonio Fortuny wrote: Hi Folks. I have created a service which has to run into Windows and Linux servers. The program runs OK on both OS and the service runs nicely in Windows (32 and 64). I'm only a little bit stuck onto an UBUNTU platform. I've managed to launch

Re: [Lazarus] VST

2013-11-27 Thread Michael Schnell
On 11/26/2013 06:01 PM, Mark Morgan Lloyd wrote: I've played with special-purpose MIDI filters in a DLL/so, but the only GUI element was that menu entries were copied from a form in the DLL to the main form. The Host program I use just requires that the VST plugin in fact does have a GUI.

Re: [Lazarus] VST

2013-11-27 Thread Mark Morgan Lloyd
Michael Schnell wrote: On 11/26/2013 06:01 PM, Mark Morgan Lloyd wrote: I've played with special-purpose MIDI filters in a DLL/so, but the only GUI element was that menu entries were copied from a form in the DLL to the main form. Did you play with the SDK in Delphi or did you in fact

Re: [Lazarus] VST

2013-11-27 Thread Michael Schnell
My question was meant as: Do you suggest that CCR should contain more than just TZMSQL. Do you have an idea where I could find that additional content ? -Michael -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

[Lazarus] How is XMLConfig supposed to work?

2013-11-27 Thread Frederic Da Vitoria
Hello, I am trying to use XmlConfig to store simple configuration data, but I can't make it create a sensible Xml file. This is not really important in my situation, as XmlConfig is able to correctly read back the strange data it wrote, but frustrating. I searched the web but could not find any

Re: [Lazarus] Linux service

2013-11-27 Thread Michael Van Canneyt
On Wed, 27 Nov 2013, Patrick Chevalley wrote: Hi, To enable your program to react to signal you need to use fpSigAction. See here for usage: http://www.freepascal.org/docs-html/rtl/baseunix/fpsigaction.html Instead of SigUsr1 in the example you can register a procedure for SIGTerm to

Re: [Lazarus] Linux service

2013-11-27 Thread Antonio Fortuny
Le 27/11/2013 15:06, Michael Van Canneyt a écrit : On Wed, 27 Nov 2013, Patrick Chevalley wrote: Hi, To enable your program to react to signal you need to use fpSigAction. See here for usage: http://www.freepascal.org/docs-html/rtl/baseunix/fpsigaction.html Instead of SigUsr1 in the

Re: [Lazarus] How is XMLConfig supposed to work?

2013-11-27 Thread waldo kitty
On 11/27/2013 6:50 AM, Frederic Da Vitoria wrote: Hello, I am trying to use XmlConfig to store simple configuration data, but I can't make it create a sensible Xml file. This is not really important in my situation, as XmlConfig is able to correctly read back the strange data it wrote, but

Re: [Lazarus] How is XMLConfig supposed to work?

2013-11-27 Thread leledumbo
From http://wiki.lazarus.freepascal.org/xmlconf, looks like simply setting FileName will do. -- View this message in context: http://free-pascal-lazarus.989080.n3.nabble.com/Lazarus-How-is-XMLConfig-supposed-to-work-tp4034509p4034513.html Sent from the Free Pascal - Lazarus mailing list

Re: [Lazarus] How is XMLConfig supposed to work?

2013-11-27 Thread Sven Barth
Am 27.11.2013 16:30, schrieb Frederic Da Vitoria: 2013/11/27 leledumbo leledumbo_c...@yahoo.co.id mailto:leledumbo_c...@yahoo.co.id From http://wiki.lazarus.freepascal.org/xmlconf, looks like simply setting FileName will do. Yes, that part works. I dislike the way it works

Re: [Lazarus] How is XMLConfig supposed to work?

2013-11-27 Thread Frederic Da Vitoria
2013/11/27 waldo kitty wkitt...@windstream.net On 11/27/2013 6:50 AM, Frederic Da Vitoria wrote: Hello, I am trying to use XmlConfig to store simple configuration data, but I can't make it create a sensible Xml file. This is not really important in my situation, as XmlConfig is able to

Re: [Lazarus] How is XMLConfig supposed to work?

2013-11-27 Thread Frederic Da Vitoria
2013/11/27 Sven Barth pascaldra...@googlemail.com Am 27.11.2013 16:30, schrieb Frederic Da Vitoria: 2013/11/27 leledumbo leledumbo_c...@yahoo.co.id From http://wiki.lazarus.freepascal.org/xmlconf, looks like simply setting FileName will do. Yes, that part works. I dislike the way it

Re: [Lazarus] How is XMLConfig supposed to work?

2013-11-27 Thread Frederic Da Vitoria
2013/11/27 Frederic Da Vitoria davito...@gmail.com 2013/11/27 waldo kitty wkitt...@windstream.net On 11/27/2013 6:50 AM, Frederic Da Vitoria wrote: Hello, I am trying to use XmlConfig to store simple configuration data, but I can't make it create a sensible Xml file. This is not really

Re: [Lazarus] How is XMLConfig supposed to work?

2013-11-27 Thread Sven Barth
Am 27.11.2013 16:53, schrieb Frederic Da Vitoria: 2013/11/27 Sven Barth pascaldra...@googlemail.com mailto:pascaldra...@googlemail.com Am 27.11.2013 16:30, schrieb Frederic Da Vitoria: 2013/11/27 leledumbo leledumbo_c...@yahoo.co.id mailto:leledumbo_c...@yahoo.co.id From

Re: [Lazarus] How is XMLConfig supposed to work?

2013-11-27 Thread Frederic Da Vitoria
2013/11/27 leledumbo leledumbo_c...@yahoo.co.id From http://wiki.lazarus.freepascal.org/xmlconf, looks like simply setting FileName will do. Yes, that part works. I dislike the way it works (Implicit saving does not seem very Pascal-ish to me), but it does save a file. My issues are rather

Re: [Lazarus] How is XMLConfig supposed to work?

2013-11-27 Thread Mattias Gaertner
On Wed, 27 Nov 2013 16:54:45 +0100 Frederic Da Vitoria davito...@gmail.com wrote: 2013/11/27 Frederic Da Vitoria davito...@gmail.com 2013/11/27 waldo kitty wkitt...@windstream.net On 11/27/2013 6:50 AM, Frederic Da Vitoria wrote: Hello, I am trying to use XmlConfig to store

[Lazarus] Fatal: Internal error 2012090607 want compiled bgrabitmap7.2

2013-11-27 Thread Eric Kom
Hi Please I got the above error when trying to compile bgrabitmap7.2 as above: /home/erickom/fpcBuild/lazarus/components/bgrabitmap7.2/bgrabitmaptypes.pas(2789,1) Fatal: Internal error 2012090607 Thank you in advance -- ___ Lazarus mailing list

Re: [Lazarus] Fatal: Internal error 2012090607 want compiled bgrabitmap7.2

2013-11-27 Thread Mattias Gaertner
On Wed, 27 Nov 2013 20:33:38 +0200 Eric Kom eric...@metropolitancollege.co.za wrote: Hi Please I got the above error when trying to compile bgrabitmap7.2 as above: /home/erickom/fpcBuild/lazarus/components/bgrabitmap7.2/bgrabitmaptypes.pas(2789,1) Fatal: Internal error 2012090607 This