Re: [lazarus] FPC compiler for virtual machines?

2008-02-07 Thread Michael Van Canneyt
On Wed, 6 Feb 2008, Marco Alvarado wrote: 2008/2/6, Wanderlan Santos dos Anjos [EMAIL PROTECTED]: Options for a Pascal compiler which targets Java: 1. http://www.mhccorp.com/pasjvm.shtml 2. http://en.wikipedia.org/wiki/MIDletPascal. Dead product? Download:

Re: [lazarus] DataBase Queries

2008-02-05 Thread Michael Van Canneyt
On Mon, 4 Feb 2008, el stamatakos wrote: Hi, I am working with a database and I am doing the following tFile:string; tFileName:=mainForm.SQLQuery1.FieldValues['tFileName']; You should never use FieldValues, this is a horrible construct which Delphi introduced for Visual Basic

Re: [lazarus] Search paths

2008-02-02 Thread Michael Van Canneyt
On Sat, 2 Feb 2008, Marius wrote: I'm still running into a little trouble here developing a console cgi application. I created a package Pow for powutils, added all units etc etc. The lazarus packages systems asked for the paths, all well.. Compiled and ready to go.. All units nice in a

Re: [lazarus] Patch for reading LRE encoded BMP files

2008-02-01 Thread Michael Van Canneyt
On Fri, 1 Feb 2008, Sebastian Günther wrote: Hi *, attached is a small patch which enables the LCL to read RLE encoded BMP files (successfully tested with some hundreds of small 8 bpp bitmaps, 4 bpp should work as well). I don't understand why this is needed, RLE bitmaps have been

Re: [lazarus] Patch for reading LRE encoded BMP files

2008-02-01 Thread Michael Van Canneyt
On Fri, 1 Feb 2008, Sebastian Günther wrote: Michael Van Canneyt schrieb: I think the reason is historical: TFPBMPReader allows to override some methods, and lazarus did this to improve on performance. Meanwhile the TFPBMPReader also improved, but lazarus never 'sees' the improvements

Re: [lazarus] I still have an ifdef request

2008-01-31 Thread Michael Van Canneyt
On Thu, 31 Jan 2008, Al Boldi wrote: Mattias Gaertner wrote: Al Boldi [EMAIL PROTECTED] wrote: Mattias Gaertner wrote: Ok, then plan a. The IDE should add the -B automatically. Thanks a lot. Where should I start looking? Or it's the sort of things which is more

Re: [lazarus] Creating Services/Daemons using Lazarus

2008-01-29 Thread Michael Van Canneyt
On Mon, 28 Jan 2008, Andrew Brunner wrote: I read the following document. http://wiki.freepascal.org/Daemons_and_Services I am using Version 0.9.25 beta SVN 13899 Under the file menu/new I don't see an option for Daemon or Service Application in the Project folder.

Re: [lazarus] Introduction

2008-01-29 Thread Michael Van Canneyt
On Tue, 29 Jan 2008, Graeme Geldenhuys wrote: On 29/01/2008, Alexsander Rosa [EMAIL PROTECTED] wrote: with mixed environments complained about the visual differences. They demanded a standard, consistent look and feel, regardless of the OS. A few This is exactly what our clients said.

Re: [lazarus] Introduction

2008-01-29 Thread Michael Van Canneyt
On Tue, 29 Jan 2008, Martin Schreiber wrote: On Tuesday 29 January 2008 04.13:31 Alexsander Rosa wrote: The OPF is ported to Lazarus (with IFDEF's). We removed most of the 3rd-party components, the only remaining are Colrcal (TMonthCalendar does not work under Wine), AlignEdit (a

Re: [lazarus] Introduction

2008-01-29 Thread Michael Van Canneyt
On Tue, 29 Jan 2008, Martin Schreiber wrote: On Tuesday 29 January 2008 10.59:57 Michael Van Canneyt wrote: ... but it is i386 only. No 64-bit, meaning it is unusable for me, since I work on 64-bit only... All projects have their advantages and disadvantages... I have no need

Re: [lazarus]Have Utilities of parse local html files to Dom?

2008-01-28 Thread Michael Van Canneyt
On Mon, 28 Jan 2008, wfifi wrote: hi,all i write a program need get some content in html files. Have Utilities of parse local html files to Dom? XHTML can be parsed with the xmlread unit, which produces a DOM tree. Michael. _

Re: [lazarus] Making things clear

2008-01-28 Thread Michael Van Canneyt
On Mon, 28 Jan 2008, Alexsander Rosa wrote: Free Pascal with LCL = C/C++ with wxWidgets Free Pascal with fpGui = C/C++ with FLTK Am I right? It is more or less analoguous, yes. Michael. _ To unsubscribe: mail [EMAIL

Re: [lazarus] why do delphi users hate lazarus so much?

2008-01-28 Thread Michael Van Canneyt
On Mon, 28 Jan 2008, Warren Postma wrote: Florian Klaempfl wrote: Warren Postma schrieb: You still can't install packages in Lazarus because the underlying FPC compiler lacks a runtime package system that could support a more delphi-like designtime/runtime packages installation

re: [lazarus] why do delphi users hate lazarus so much?

2008-01-28 Thread Michael Van Canneyt
On Mon, 28 Jan 2008, Warren Postma wrote: My reason for complaining about Lazarus, and calling it unusable, is that it suffers from worse usability defects (for what I want to use it for) than even the worst-ever versions of Delphi such as Delphi 2005. If Lazarus could be as useful to me

Re: [lazarus] Default target OS/CPU for projects ?

2008-01-27 Thread Michael Van Canneyt
On Sat, 26 Jan 2008, Marc Weustink wrote: Michael Van Canneyt wrote: Hello, How does the IDE determine the target OS/CPU if none is specified for a project ? Apparently, it takes the same OS/CPU combination as the one the IDE itself was compiled with. In my opinion

Re: [lazarus] Component

2008-01-27 Thread Michael Van Canneyt
On Sat, 26 Jan 2008, [EMAIL PROTECTED] wrote: That's it! http://wiki.lazarus.freepascal.org/Lazarus_Packages should be enhanced... I did this, added some stuff. Michael. _ To unsubscribe: mail [EMAIL PROTECTED] with

[lazarus] DBImage patch

2008-01-27 Thread Michael Van Canneyt
Hi, 2 issues with TDBImage: First, TDBImage does not handle the case of a NULL blob very well. When a blob field is NULL, CreateBlobStream can return Nil. The Nil case is not handled correctly by TDBImage. I submitted a bug report (10711) with a patch attached, please commit it. Secondly: In

Re: [lazarus] Component

2008-01-26 Thread Michael Van Canneyt
On Sat, 26 Jan 2008, [EMAIL PROTECTED] wrote: hi! I can see the package in the Package Graph window, but it isn't shown in the palette or the component window. But the .pas file contains a procedure Register; begin RegisterComponents('Samples', [TMyScrollBox]); end; Did you mark

Re: [lazarus] Component

2008-01-26 Thread Michael Van Canneyt
On Sat, 26 Jan 2008, [EMAIL PROTECTED] wrote: where can I find this checkbox? In the package dialog. - Open the packake file. - Select the file that contains the register statement. - below in 'File properties', check 'Register unit' - Compile and install. Michael. Michael Van Canneyt

[lazarus] Default target OS/CPU for projects ?

2008-01-26 Thread Michael Van Canneyt
Hello, How does the IDE determine the target OS/CPU if none is specified for a project ? Apparently, it takes the same OS/CPU combination as the one the IDE itself was compiled with. In my opinion, this is wrong. It should see what compiler was selected, and use the OS/CPU combination that

Re: [lazarus] What is wrong with the Toolbar?

2008-01-22 Thread Michael Van Canneyt
On Tue, 22 Jan 2008, Graeme Geldenhuys wrote: On 22/01/2008, Paul Ishenin [EMAIL PROTECTED] wrote: Whoever broke it, would you mind taking a look at fixing it Please update your svn version and retest once again. That was already fixed. Sorry, but I don't think so. :-(

Re: [lazarus] Introduction

2008-01-22 Thread Michael Van Canneyt
On Tue, 22 Jan 2008, Graeme Geldenhuys wrote: On 22/01/2008, Giuliano Colla [EMAIL PROTECTED] wrote: Well in all that time I've never met a single customer requiring a native look. On the contrary what I've always been asked for is a specific look, and specific behavior.

Re: [lazarus] Introduction

2008-01-21 Thread Michael Van Canneyt
On Mon, 21 Jan 2008, Giuliano Colla wrote: Florian Klaempfl ha scritto: Lord Satan schrieb: [...] That's correct. And if they had used OpenGL for it, it would be hardware accelerated, cross plattform and good looking, too. And we would need no stupid Aero or Compiz or other

Re: [lazarus] Delphi/Lazarus comparison by Codegear

2008-01-19 Thread Michael Van Canneyt
On Sat, 19 Jan 2008, Mark Morgan Lloyd wrote: Dave Coventry wrote: I have Delphi 3 Standard and I still code with it, I never upgraded to 4 because it had a bad reputation, when 5 came out they had changed the license so that you were no longer free to distribute your applications

Re: [lazarus] DOS platform conditional defines

2008-01-18 Thread Michael Van Canneyt
On Thu, 17 Jan 2008, Marco Alvarado wrote: Hello! In Free Pascal Compiler 2.0.4, is there a conditional define I could check for DOS platform? I was looking around Google, but no luck. If anyone can give me a link for the whole list of conditional that will be even more appreciated! See

Re: [lazarus] DOS platform conditional defines

2008-01-18 Thread Michael Van Canneyt
On Fri, 18 Jan 2008, Damien Gerard wrote: On Jan 18, 2008, at 9:11 AM, Michael Van Canneyt wrote: On Thu, 17 Jan 2008, Marco Alvarado wrote: Hello! In Free Pascal Compiler 2.0.4, is there a conditional define I could check for DOS platform? I was looking around Google

Re: [lazarus] Build an application / Internal Error

2008-01-17 Thread Michael Van Canneyt
On Thu, 17 Jan 2008, Damien Gerard wrote: On Jan 17, 2008, at 3:15 PM, Damien Gerard wrote: When I use Build (and not Build All) I often get file(somewhere) Fatal: Internal Error 200212277, whatever the version or the platform (except 2.3.1 I don't know). The only result from

Re: [lazarus] BerkeleyDB in Lazarus

2008-01-17 Thread Michael Van Canneyt
On Thu, 17 Jan 2008, Liyuan Garcia Caballero wrote: BerkeleyDB is supported in Lazarus? Not unless you translate the C headers... Michael. _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the

Re: [lazarus] BerkeleyDB in Lazarus

2008-01-17 Thread Michael Van Canneyt
On Thu, 17 Jan 2008, Marco van de Voort wrote: On Thu, Jan 17, 2008 at 08:12:23PM +0100, Michael Van Canneyt wrote: BerkeleyDB is supported in Lazarus? Not unless you translate the C headers... http://www.stack.nl/~marcov/bdb.zip Maybe put this in the packages ? Michael

Re: [lazarus] Freeing runtime components.

2008-01-15 Thread Michael Van Canneyt
On Mon, 14 Jan 2008, Giuliano Colla wrote: Patrick Shepherd ha scritto: Sorry for such a simple question but I'm just getting back to programming (as a hobby). Haven't done much since TP5. Anyway, if I create a component eg TPanel during runtime and set it's owner property to a

Re: [fpc-pascal] Notice: Possible copyright infringements in FPC code base

2008-01-15 Thread Michael Van Canneyt
On Tue, 15 Jan 2008, Henry Vermaak wrote: On 15/01/2008, Michael Van Canneyt [EMAIL PROTECTED] wrote: -- 8 -- As far as I can judge: They count on us to play things fair, and let us handle it to our own judgement for the moment, but said that if we undertook no action, they would take

RE: [lazarus] Solution to the BIG compiled file issue!

2008-01-15 Thread Michael Van Canneyt
On Tue, 15 Jan 2008, Andrew Brunner wrote: Vincent: IOW: I expect Lazarus users to be knowledgeable, Lazarus is not for fools. I offer you all this. The #1 reason why Microsoft Windows (3 and up) took off and became so popular was Visual Basic for idiots and Turbo Pascal /

Re: [lazarus] why sometime TLHTTPClientComponent can not get data?

2008-01-14 Thread Michael Van Canneyt
On Mon, 14 Jan 2008, Luiz Americo Pereira Camara wrote: Marc Weustink wrote: ik wrote: On Jan 14, 2008 3:59 AM, wfifi [EMAIL PROTECTED] wrote: thanks ido wireshark is a great tool, i attach a log, found data is got, but Component's status not change. I've read your code

Re: [lazarus] fpdoc and xml-struct

2008-01-11 Thread Michael Van Canneyt
On Fri, 11 Jan 2008, willem wrote: I try to generate xml with fpdoc, but I get an error message FPDoc - Free Pascal Documentation Tool Version 2.2.0 [2007/08/30] (c) 2000 - 2003 Areca Systems GmbH / Sebastian Guenther, [EMAIL PROTECTED] Invalid format XML-STRUCT specified Writing 9

Re: [lazarus] fpdoc and xml-struct

2008-01-11 Thread Michael Van Canneyt
On Fri, 11 Jan 2008, willem wrote: Michael Van Canneyt wrote: On Fri, 11 Jan 2008, willem wrote: I try to generate xml with fpdoc, but I get an error message FPDoc - Free Pascal Documentation Tool Version 2.2.0 [2007/08/30] (c) 2000 - 2003 Areca Systems GmbH / Sebastian

Re: [lazarus] xmlwriter not yet implemented in Lazarus

2008-01-11 Thread Michael Van Canneyt
On Fri, 11 Jan 2008, willem wrote: Well I want to implement UML in the Lazarus Project. Therefore I need XML documentation. ? I don't see the connection between these two. But in the Fpdoc source of dw_xml.pp the TXMLWriter.WriteDoc is is a Stub. Its only a stub. with a begin then

Re: [lazarus] fpdoc documentation problem

2008-01-10 Thread Michael Van Canneyt
On Thu, 10 Jan 2008, willem wrote: I call fpdoc with fpdoc --package=regexdna --input=regexdna.pas This is the example of the fpdoc documentation. And should be created a directory regdna which contains the Documentation. But that does not occur . What does occur ? Michael.

Re: [lazarus] fpdoc documentation problem

2008-01-10 Thread Michael Van Canneyt
On Thu, 10 Jan 2008, willem wrote: Michael Van Canneyt wrote: On Thu, 10 Jan 2008, willem wrote: I call fpdoc with fpdoc --package=regexdna --input=regexdna.pas This is the example of the fpdoc documentation. And should be created a directory regdna which contains

Re: [lazarus] fpdoc documentation problem

2008-01-10 Thread Michael Van Canneyt
On Thu, 10 Jan 2008, willem wrote: Michael Van Canneyt wrote: On Thu, 10 Jan 2008, willem wrote: Michael Van Canneyt wrote: On Thu, 10 Jan 2008, willem wrote: I call fpdoc with fpdoc --package=regexdna --input=regexdna.pas

Re: [lazarus] StdOut on Linux b0rked

2008-01-08 Thread Michael Van Canneyt
On Tue, 8 Jan 2008, A.J. Venter wrote: Hi all, I am having an immensely weird problem with newest lazarus (which was definitely not there before). The problem affects only code that makes use of tprocess to get output from a shell-script and feed it back as a function result. It is

Re: [lazarus] StdOut on Linux b0rked

2008-01-08 Thread Michael Van Canneyt
On Tue, 8 Jan 2008, Vincent Snijders wrote: A.J. Venter schreef: Nothing was changed. Can you please give some sample code? It's hard to say something in general. Note that or | cannot be used unless you invoke the shell with a commandline like /bin/sh -c your command

Re: [lazarus] FastZLib: Illegal COFF Magic

2008-01-05 Thread Michael Van Canneyt
On Fri, 4 Jan 2008, Lukas Gradl wrote: Michael Van Canneyt schrieb: On Fri, 4 Jan 2008, Lukas Gradl wrote: Sorry to bother you again - but I'm just too stupid to get it to work. Using cygwin I did a gcc -c adler32.c then I renamed the created adler32.o to adler32.obj

Re: [lazarus] FastZLib: Illegal COFF Magic

2008-01-04 Thread Michael Van Canneyt
On Fri, 4 Jan 2008, Lukas Gradl wrote: Anyone got FastZLib to compile with FPC? (http://www.dellapasqua.com/delphizlib/) When it links the .OBJ-Files there occurs an Illegal COFF Magic while reading and the name of the OBJ-File. Could'nt find an information in that - seems that

Re: [lazarus] TReader / TWriter compatibility to Delphi?

2008-01-04 Thread Michael Van Canneyt
On Thu, 3 Jan 2008, Lukas Gradl wrote: Just discovered that TWriter / TReader Objects in FPC are missing some Methods compared to Delphi. At the moment I'm missing TReader.SkipValue - am I to stupid again or do I have to write a fix for that? Skipvalue is not implemented; Probably it

Re: [lazarus] Ahh - next one: TFieldList in FPC?

2008-01-04 Thread Michael Van Canneyt
On Thu, 3 Jan 2008, Lukas Gradl wrote: Porting DB-related components from Delphi to FPC is not an easy task. I'm missing TFieldList - anyone implementing that? Not currently. Michael. _ To unsubscribe: mail [EMAIL

Re: [lazarus] Hi, i have problems with TDBMemo and TToolbar

2008-01-04 Thread Michael Van Canneyt
On Thu, 3 Jan 2008, Osvaldo TC Filho wrote: Hi all. Environment: ubuntu gutsy, Lazarus svn Rev. 13608 GTK2 My TDBMemo is read only, with others db components no problem. (please don't answaer with: ... and the properties 'Read Only' ... it's false. My Toolbar is transparent,

Re: [lazarus] FastZLib: Illegal COFF Magic

2008-01-04 Thread Michael Van Canneyt
On Fri, 4 Jan 2008, Lukas Gradl wrote: Michael Van Canneyt schrieb: On Fri, 4 Jan 2008, Lukas Gradl wrote: Anyone got FastZLib to compile with FPC? (http://www.dellapasqua.com/delphizlib/) When it links the .OBJ-Files there occurs an Illegal COFF Magic while

Re: [lazarus] FastZLib: Illegal COFF Magic

2008-01-04 Thread Michael Van Canneyt
On Fri, 4 Jan 2008, Lukas Gradl wrote: Sorry to bother you again - but I'm just too stupid to get it to work. Using cygwin I did a gcc -c adler32.c then I renamed the created adler32.o to adler32.obj. But when trying to link I get a Undefined symbol: ZLIBEX... I never used gcc on

Re: [lazarus] IDE packages

2008-01-03 Thread Michael Van Canneyt
On Thu, 3 Jan 2008, Mattias Gaertner wrote: Current state: It is allowed for IDE packages to access the IDE source directories (designer, debugger, ide, packager). Is anyone using this feature? I am not, and I wrote quite some packages :-) I would like to get of this. Then a

Re: [lazarus] converting a console app to a gui app

2008-01-02 Thread Michael Van Canneyt
On Wed, 2 Jan 2008, Graeme Geldenhuys wrote: Hi, I've been asked by someone if it's possible to convert a console application systematically to a gui application. One form at a time. So during the conversion process the application needs to be able to handle input from GUI Forms and

Re: [lazarus] Some nice bugs to start the new year...

2008-01-01 Thread Michael Van Canneyt
On Tue, 1 Jan 2008, Paul Ishenin wrote: Michael Van Canneyt wrote: - Latest SVN: Adding a file in the image list editor crashes the fileopen dialog: [skip] fixed in r13556 Great, thank you. I tested my posted patch for the imagelist problem, and that works fine, so I

Re: [lazarus] Currency Type gets cast a Integer

2008-01-01 Thread Michael Van Canneyt
On Tue, 1 Jan 2008, Lee Jenkins wrote: Michael Van Canneyt wrote: On Tue, 1 Jan 2008, Lee Jenkins wrote: I have a method of a class such as: function TMyObject.Test(ACurrency: Currency) begin // do some stuff end; Now, I'll call this method like

[lazarus] Some nice bugs to start the new year...

2007-12-31 Thread Michael Van Canneyt
- Latest SVN: Adding a file in the image list editor crashes the fileopen dialog: ERROR in LCL: Handle creation failed creating PreviewFileControl:TPreviewFileControl Creating gdb catchable error: $080815E8 RAISEGDBEXCEPTION, line 790 of lclproc.pas $0816CFCD TWINCONTROL__CREATEWND,

Re: [OOT] Re: [lazarus] New bitmap :-)

2007-12-20 Thread Michael Van Canneyt
On Thu, 20 Dec 2007, Bee wrote: I rework everything. I never saw TSQLite3Connection, TSQLConnector, and TSQLScript components on my Laz 9.25 SQLDB tab. Is it not yet included in Lazarus (but the icons are already provided for future use)? It is only included if you use the latest FPC.

Re: [lazarus] Howto connect an Onclick-event to an existing procedure?

2007-12-20 Thread Michael Van Canneyt
On Thu, 20 Dec 2007, John vd Waeter wrote: Hi all, I have several TUpDown buttons created at runtime. I have a general event for the onclick: procedure UpDownClick(Sender:TObject; Button:TUDBtnType) begin ... DoMyStuff; ... end; Now at runtime I like to connect the

Re: [lazarus] A Thread in DLL

2007-12-15 Thread Michael Van Canneyt
On Sat, 15 Dec 2007, Al Boldi wrote: melchiorre caruso wrote: I found an article that explains why my code does not work on Windows: Actually, I had a closer look at synchronize, and it turns out to be dependent on the GUI, which probably means that you need to include 'Interfaces' in

Re: A Lazarus IDE challenge

2007-12-13 Thread Michael Van Canneyt
On Thu, 13 Dec 2007, Graeme Geldenhuys wrote: Oh, here is the link to that Ribbon Test App. http://mxs.bergsoft.net/files/ribbons/RibbonTestApp.zip Don't they have screenshots ? Michael. _ To unsubscribe: mail [EMAIL

Re: [lazarus] SqlDB component madness

2007-12-12 Thread Michael Van Canneyt
On Wed, 12 Dec 2007, Joost van der Sluis wrote: Op woensdag 12-12-2007 om 15:11 uur [tijdzone +0200], schreef Graeme Geldenhuys: Step 1: == TIBConnection - TSQLTransaction via 'Database' property. No problem here. Step 2: == TIBConnection - TSQLTransaction

Re: [lazarus] SqlDB component madness

2007-12-12 Thread Michael Van Canneyt
On Wed, 12 Dec 2007, Graeme Geldenhuys wrote: On 12/12/2007, Joost van der Sluis [EMAIL PROTECTED] wrote: Step 2: You don't need to do this. It is used when the TIBConnection tries to execute some sql-statements itself. If has to know which transaction it should use. You have to see

Re: [lazarus] SqlDB component madness

2007-12-12 Thread Michael Van Canneyt
On Wed, 12 Dec 2007, Graeme Geldenhuys wrote: On 12/12/2007, Michael Van Canneyt [EMAIL PROTECTED] wrote: If all works as I want it, this should be reduced to 4 steps for the default cases, That is what I expected and what I was used to in Delphi. I gather the change you

Re: [lazarus] SqlDB component madness

2007-12-12 Thread Michael Van Canneyt
On Wed, 12 Dec 2007, Michael Van Canneyt wrote: On Wed, 12 Dec 2007, Graeme Geldenhuys wrote: On 12/12/2007, Michael Van Canneyt [EMAIL PROTECTED] wrote: If all works as I want it, this should be reduced to 4 steps for the default cases, That is what I expected

Re: [lazarus] vote for bdd related component icon

2007-12-11 Thread Michael Van Canneyt
On Tue, 11 Dec 2007, wile64 wrote: Hi all, Please vote for the image of your choice The first one is most pleasing to my eye... Michael. _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the

Re: [lazarus] To all technical writers...

2007-12-10 Thread Michael Van Canneyt
On Sun, 9 Dec 2007, Mark Morgan Lloyd wrote: Marco van de Voort wrote: I use Lyx here, exporting to PDF with thumbnails, automatic TOC etc. Same here. I use OO for work for technical documentation, and that experience convinced me to stay with LyX/LateX privately. :-) I'm well

RE: TStringList.SaveToFile File permissions

2007-12-10 Thread Michael Van Canneyt
On Fri, 7 Dec 2007, el stamatakos wrote: Hi , What I am trying to do is create a file and set the permissions to OwnerRead=true OwnerWrite=true; OwnerExecute=true; GroupRead=true; GroupExecute=true; OthersExecute=ture; OthersRead=True; This is for Linux how can I do this

Re: [lazarus] FPDoc or PasDoc?

2007-12-01 Thread Michael Van Canneyt
On Fri, 30 Nov 2007, Graeme Geldenhuys wrote: On 30/11/2007, Michael Van Canneyt [EMAIL PROTECTED] wrote: Use of XML, tight documentation editor support in lazarus. Lazarus now offers tooltips which it gets from the fpdoc sources. And you can refer to the existing fpdoc-documented

Re: [lazarus] FPDoc or PasDoc?

2007-12-01 Thread Michael Van Canneyt
On Sat, 1 Dec 2007, Graeme Geldenhuys wrote: On 01/12/2007, Michael Van Canneyt [EMAIL PROTECTED] wrote: I think this is a rather daunting task, the fpdoc engine is tightly intertwined with the XML format and data structures. It might be easier to do a preprocessing step, to convert

Re: [lazarus] FPDoc or PasDoc?

2007-11-30 Thread Michael Van Canneyt
On Fri, 30 Nov 2007, Lee Jenkins wrote: I've been using pasdoc for a while, but was wondering if there were benefits of FPdoc over pasdoc. I've read over the docs for FPDoc some and I am still not certain how it works. According to docs, a big benefit sported is not obfuscating the

Re: [lazarus] TProcess.Input problem

2007-11-29 Thread Michael Van Canneyt
On Thu, 29 Nov 2007, Malcolm Poole wrote: Marc Weustink wrote: Malcolm Poole wrote: Marc Weustink wrote: Malcolm Poole wrote: Hello everyone! I am trying to write a front-end for the command-line archiving program dar ( http://dar.linux.free.fr/ ) I

Re: [lazarus] Back to 0.9.22

2007-11-28 Thread Michael Van Canneyt
On Wed, 28 Nov 2007, Arí Ricardo Ody wrote: We have lots of Lazarus projects here. It would be almost impossible to debug each one and report error(s). I must say I am surprised by all the bug reports of an 'unstable' lazarus: I'm running Lazarus 0.9.25, revision 12870, and it's running

Re: [lazarus] Back to 0.9.22

2007-11-28 Thread Michael Van Canneyt
On Thu, 29 Nov 2007, Graeme Geldenhuys wrote: On 28/11/2007, Michael Van Canneyt [EMAIL PROTECTED] wrote: As for not being able to open older projects' form files: this can be expected, and should normally be a 1-time issue if you correct the .lfm files. It can happen too if you switch

Re: [lazarus] Support for load and save PCX format (FPC team)

2007-11-23 Thread Michael Van Canneyt
On Fri, 23 Nov 2007, wile64 wrote: Hi, Here is the support of PCX images, Reading all formats and saving format 24 bits. Thank you very much :) I have tested and committed it, revision 9319. To what fpc version will be available (2.2.1)? Maybe in 2.2.2, due around christmas. It

Re: [lazarus] calling all Regex and Script junkies

2007-11-23 Thread Michael Van Canneyt
On Fri, 23 Nov 2007, Graeme Geldenhuys wrote: On 23/11/2007, Michael Van Canneyt [EMAIL PROTECTED] wrote: Why not simply use ShortFile = `basename $f .pas` ? Probably because I never knew about that function! ;-) Thanks Michael. And as I thought, in the time it took

Re: [lazarus] calling all Regex and Script junkies

2007-11-23 Thread Michael Van Canneyt
On Fri, 23 Nov 2007, Graeme Geldenhuys wrote: Hi, I'm trying to create a script to auto generate the fpdoc description (*.xml) files, but I have no idea how the regex stuff works! Could somebody help me please? This is what I have so far... in a myscript.sh file under Linux. The

Re: [lazarus] Google's Android OS :)

2007-11-22 Thread Michael Van Canneyt
On Thu, 22 Nov 2007, Damien Gerard wrote: On Nov 22, 2007, at 2:42 PM, willem wrote: Marco van de Voort wrote: On Thu, Nov 22, 2007 at 10:41:44AM +0100, willem wrote: Well object pascal lies between java and c++. It lies at C++ level. android uses the eclipse

Re: [lazarus] Changes for targa read (FPC team)

2007-11-22 Thread Michael Van Canneyt
On Thu, 22 Nov 2007, wile64 wrote: Hi, This change allows you to read any file formats TARGA. I send the complete file, I am not a developer FPC ;) Thank you very much. I committed the file to SVN. Michael. _ To

Re: [lazarus] Search engine for Lazarus and Free Pascal concerned stuff

2007-11-20 Thread Michael Van Canneyt
On Tue, 20 Nov 2007, Carlos German Tejero wrote: Maybe, samebody can take a look of this http://ioda.sourceforge.net/, a full text search project (posible dead) written in fpc. I think this is actually a very good hint. Maybe we should evaluate this tool and see if we can use it for the

[lazarus] Notice: Possible copyright infringements in FPC code base

2007-11-19 Thread Michael Van Canneyt
Hello, The FPC team has been recently made aware that a number of routines in the Classes unit are apparently based on code originally from Borland/CodeGear. After someone found a tool to automatically compare source code bodies to look for structural similarities, we improved its support for

Re: [lazarus] Notice: Possible copyright infringements in FPC code base

2007-11-19 Thread Michael Van Canneyt
On Mon, 19 Nov 2007, Martin Waldenburg wrote: * TStringList.Grow Once I have published alternatives to this. However there cannot be done much more than using different growing rates. Which is exactly what we'll do. * TStringList.QuickSort Same here, a nonrecursive version based

Re: [fpc-devel] Notice: Possible copyright infringements in FPC code base

2007-11-19 Thread Michael Van Canneyt
On Mon, 19 Nov 2007, Graeme Geldenhuys wrote: On 19/11/2007, Michael Van Canneyt [EMAIL PROTECTED] wrote: be based on Delphi/Kylix code. All such identified routines of sufficient complexity and/or likeliness have been or are in the process of being rewritten from scratch using

Re: [lazarus] Notice: Possible copyright infringements in FPC code base

2007-11-19 Thread Michael Van Canneyt
On Mon, 19 Nov 2007, Martin Waldenburg wrote: Damien Gerard schrieb: Well, the solution is very simple : TSortAlgorithm = (saBubble,saShell,saMerge,saRadix,saQuick); TStringList = Class(TStrings); Property SortAlgorithm : TSortAlgorithm Read FSA Write FSA; end; I think it

RE: [lazarus] Notice: Possible copyright infringements in FPC code base

2007-11-19 Thread Michael Van Canneyt
On Mon, 19 Nov 2007, Stephen Dickason wrote: Well, the solution is very simple : TSortAlgorithm = (saBubble,saShell,saMerge,saRadix,saQuick); TStringList = Class(TStrings); Property SortAlgorithm : TSortAlgorithm Read FSA Write FSA; end; I think it is a very good idea.

Re: [lazarus] About copyright infringement

2007-11-19 Thread Michael Van Canneyt
On Mon, 19 Nov 2007, George Lober wrote: Hello, Question: What if clean room approach code is the same as the other. Simplistically speaking, how many other ways can one write 1 + 1 = 2? Even if you may be able, most people would write it that way anyway. When you get right down to it,

Re: [lazarus] Is svn repository down ?

2007-11-15 Thread Michael Van Canneyt
On Thu, 15 Nov 2007, Antonio Sanguigni wrote: Hi all, I'm trying to update my working copy but svn repository is down. I got: C:\lazarussvn up svn: richiesta PROPFIND fallita su '/svn/lazarus/trunk' svn: PROPFIND di '/svn/lazarus/trunk': non ho potuto connettermi al server (http

Re: [lazarus] Bad news

2007-11-13 Thread Michael Van Canneyt
On Tue, 13 Nov 2007, David Lyon wrote: Mr yap yap here... Apologies for not getting to Germany but I had some client matters and couldn't get away... Don't know where you guys are up to with the Trademarks/Foundation stuff. Any updates ? Not much. I attended a firebird conference,

Re: [lazarus] The use of Variants?

2007-11-13 Thread Michael Van Canneyt
On Tue, 13 Nov 2007, Sam Liddicott wrote: Michael Van Canneyt wrote: On Tue, 13 Nov 2007, Graeme Geldenhuys wrote: * They tend to be slow compared no native types. In Delphi 6 they were very slow. How does it compare in FPC 2.2.0? They are slower than

Re: [lazarus] Really bad bug in IDE.

2007-11-12 Thread Michael Van Canneyt
On Mon, 12 Nov 2007, Martin Schreiber wrote: On Sunday 11 November 2007 11.43, Michael Van Canneyt wrote: Hi, Quite the showstopper: The action editor no longer works in the Lazarus IDE :/ Steps to reproduce: - Create new application - Drop action list on form - Edit action

Re: [lazarus] Really bad bug in IDE.

2007-11-12 Thread Michael Van Canneyt
On Mon, 12 Nov 2007, Mattias Gaertner wrote: On Sun, 11 Nov 2007 22:25:36 +0100 (CET) Michael Van Canneyt [EMAIL PROTECTED] wrote: On Sun, 11 Nov 2007, Felipe Monteiro de Carvalho wrote: Is that a regression? Did it work with 0.9.22? Yes. It worked a month ago. Strange

Re: [lazarus] Lazarus component DBExport

2007-11-12 Thread Michael Van Canneyt
On Mon, 12 Nov 2007, fedorax wrote: In yesterday SVN à new component DbExport was added, but if i can find it in the /usr/local/src/lazarus/trunk/components/dbexport directory it's not appear in the IDE list of components. Bug or not bug ? If not how can i install it ? The actual

Re: [lazarus] Bad news

2007-11-12 Thread Michael Van Canneyt
On Mon, 12 Nov 2007, 12 12 wrote: It seems Lazarus team offended by CodeGears damping policy. Some lazy programmers preffer to spent about 300 USD per license for platform-depended Turbo Delphi rather then for bounty for Lazarus team... I demoralized... Never let yourself be demoralized by

Re: [lazarus] Really bad bug in IDE.

2007-11-12 Thread Michael Van Canneyt
On Mon, 12 Nov 2007, Martin Schreiber wrote: On Monday 12 November 2007 09.44, Michael Van Canneyt wrote: Did you upgrade xlib/Xorg? There are some new sanity checks in xcb which break many applications. In MSEgui I had a problem with XFlushGC, it was necessary to remove the XFlushGC

Re: [lazarus] Clone objects

2007-11-12 Thread Michael Van Canneyt
On Mon, 12 Nov 2007, Damien Gerard wrote: Is there a way to clone objects/components ? In C++ we use copy constructors, but in fpc/laz, I don't think there are such methods. In fact I would like to create using the IDE a Panel with sub controls and dupplicate it. It is such a pain to

Re: [lazarus] Clone objects

2007-11-12 Thread Michael Van Canneyt
On Mon, 12 Nov 2007, Damien Gerard wrote: On Nov 12, 2007, at 2:17 PM, Michael Van Canneyt wrote: On Mon, 12 Nov 2007, Damien Gerard wrote: Is there a way to clone objects/components ? In C++ we use copy constructors, but in fpc/laz, I don't think

Re: [lazarus] Clone objects

2007-11-12 Thread Michael Van Canneyt
On Mon, 12 Nov 2007, Damien Gerard wrote: On Nov 12, 2007, at 3:05 PM, Michael Van Canneyt wrote: On Mon, 12 Nov 2007, Damien Gerard wrote: On Nov 12, 2007, at 2:17 PM, Michael Van Canneyt wrote: On Mon, 12 Nov 2007, Damien Gerard wrote

Re: [lazarus] Bad news

2007-11-12 Thread Michael Van Canneyt
On Mon, 12 Nov 2007, Marc Weustink wrote: Leonardo M. Ramé wrote: http://www.stevetrefethen.com/blog/IWishTheDelphiCommandLineCompilerWereFree.aspx Where have I heard such accusations before Let me guess: SCO ? :) Michael.

Re: [lazarus] Lazarus and InstantObjects ?

2007-11-11 Thread Michael Van Canneyt
On Sun, 11 Nov 2007, Graeme Geldenhuys wrote: On 10/11/2007, Al Boldi [EMAIL PROTECTED] wrote: This is a big misconception. The fact that TForm has the ability to host business rules and whatever else does not mean that you have to do it this way. You can maintain whatever model you

[lazarus] Really bad bug in IDE.

2007-11-11 Thread Michael Van Canneyt
Hi, Quite the showstopper: The action editor no longer works in the Lazarus IDE :/ Steps to reproduce: - Create new application - Drop action list on form - Edit action list - Click 'Add action' button. and POOF: Lazarus gone ! Lazarus of today: linux, GTK1, X86_64. But it was present some

Re: [lazarus] Really bad bug in IDE.

2007-11-11 Thread Michael Van Canneyt
On Sun, 11 Nov 2007, Mattias Gaertner wrote: On Sun, 11 Nov 2007 11:43:38 +0100 (CET) Michael Van Canneyt [EMAIL PROTECTED] wrote: Hi, Quite the showstopper: The action editor no longer works in the Lazarus IDE :/ Steps to reproduce: - Create new application - Drop

Re: [lazarus] Lazarus and InstantObjects ?

2007-11-11 Thread Michael Van Canneyt
On Sun, 11 Nov 2007, Graeme Geldenhuys wrote: On 11/11/2007, Michael Van Canneyt [EMAIL PROTECTED] wrote: Indeed. But I think that all will agree that the fact that it IS possible allows to do real RAD, making it possible to create new programs very fast. Agreed! That's why I think

Re: [lazarus] Really bad bug in IDE.

2007-11-11 Thread Michael Van Canneyt
On Sun, 11 Nov 2007, Felipe Monteiro de Carvalho wrote: Is that a regression? Did it work with 0.9.22? Yes. It worked a month ago. Michael. _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the

Re: XML and UTF-8

2007-11-10 Thread Michael Van Canneyt
On Sat, 10 Nov 2007, Mattias Gaertner wrote: On Sat, 10 Nov 2007 15:25:05 +0100 (CET) Michael Van Canneyt [EMAIL PROTECTED] wrote: On Sat, 10 Nov 2007, Valdas Jankūnas wrote: I realize if i want unicode support i must use units Laz_DOM, Laz_XMLRead, Laz_XMLWrite instead

  1   2   3   4   5   6   7   8   9   >