Re: [lazarus] French translation / WIndows Manifest

2008-01-08 Thread wile64
Apply r13664 -- Laurent. My Components: http://wiki.lazarus.freepascal.org/Wile64 French Forum : http://lazforum-fr.tuxfamily.org/index.php

[lazarus] StdOut on Linux b0rked

2008-01-08 Thread A.J. Venter
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 triggered whenever stdout of the main program is

[lazarus] Changing LCL without rebuild Lazarus

2008-01-08 Thread Fabio Dell'Aria
Hi to all, I'm working on some LCL changes. To do this I have created some test projects but after every rebuild I see that my projects continue to uses the .ppu unit (do not rebuild my modified LCL sources). How I can instruct Lazarus to rebuild modified LCL sources instead of continue to use

[lazarus] SegV with GTk2/Windows

2008-01-08 Thread Damien Gerard
I have a strange SegV, and I don't really know if I make operations at the wrong place or it is more or less a bug with GTk2 under Windows. Program received signal SIGSEGV, Segmentation fault. 0x0040bee9 in TOBJECT__INHERITSFROM (ACLASS=0x6314ec) at objpas.inc:404 404 objpas.inc: No such

Re: [lazarus] SegV with GTk2/Windows

2008-01-08 Thread Paul Ishenin
Damien Gerard wrote: I have a strange SegV, and I don't really know if I make operations at the wrong place or it is more or less a bug with GTk2 under Windows. [skip] Any Idea ? Yes, you are using some snapshot (released about week ago). Please update your lazarus. Best regards, Paul

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] Changing LCL without rebuild Lazarus

2008-01-08 Thread A.J. Venter
Fabio Dell'Aria wrote: Hi to all, I'm working on some LCL changes. To do this I have created some test projects but after every rebuild I see that my projects continue to uses the .ppu unit (do not rebuild my modified LCL sources). How I can instruct Lazarus to rebuild modified LCL sources

Re: [lazarus] StdOut on Linux b0rked

2008-01-08 Thread A.J. Venter
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 yourfile I mean when I launch the program myself on the commandline e.g.

[lazarus] Question about packages and units

2008-01-08 Thread Joost van der Sluis
Hi al, If you install the fpWeb package, create a new cgi-application with a TFPWebModule. You can drop a THTMLEntityProducer on that module. So far so good. Then you can add an OnWritePage event, but thereafter the program will nog compile anymore, because you have to add the 'htmlwriter' unit

Re: [lazarus] SegV with GTk2/Windows

2008-01-08 Thread Damien Gerard
On Jan 8, 2008, at 12:41 PM, Paul Ishenin wrote: Damien Gerard wrote: I have a strange SegV, and I don't really know if I make operations at the wrong place or it is more or less a bug with GTk2 under Windows. [skip] Any Idea ? Yes, you are using some snapshot (released about week

Re: [lazarus] Question about packages and units

2008-01-08 Thread Mattias Gärtner
Zitat von Joost van der Sluis [EMAIL PROTECTED]: Hi al, If you install the fpWeb package, create a new cgi-application with a TFPWebModule. You can drop a THTMLEntityProducer on that module. So far so good. Then you can add an OnWritePage event, but thereafter the program will nog compile

Re: [lazarus] regex-dna benchmark

2008-01-08 Thread Marco van de Voort
On Mon, Jan 07, 2008 at 06:37:08PM +0100, willem wrote: I have a wiki site about google android. It covers also the topic of lazarus and free pascal. My visitors are interested in benchmark as my ranking. A partical interesting benchmark is the free pas rex-dna benchmark. Does one of the

Re: [lazarus] Question about packages and units

2008-01-08 Thread Joost van der Sluis
Op dinsdag 08-01-2008 om 14:14 uur [tijdzone +0100], schreef Mattias Gärtner: Zitat von Joost van der Sluis [EMAIL PROTECTED]: Hi al, If you install the fpWeb package, create a new cgi-application with a TFPWebModule. You can drop a THTMLEntityProducer on that module. So far so good.

Re: [lazarus] Latest svn fails to compile.

2008-01-08 Thread Giuliano Colla
Paul Ishenin ha scritto: Giuliano Colla пишет: Latest svn (r 13667) fails to compile (Linux - fpc 2.0.4). Unit lcl/ldocktree.pas complains that InflateRect is undefined. Adding LCLIntf to the uses clauses fixes the problem. InflateRect is defined in types.pas of fpc 2.2.0 That's why I

[lazarus] Latest svn fails to compile.

2008-01-08 Thread Giuliano Colla
Latest svn (r 13667) fails to compile (Linux - fpc 2.0.4). Unit lcl/ldocktree.pas complains that InflateRect is undefined. Adding LCLIntf to the uses clauses fixes the problem. Regards, Giuliano -- Giuliano Colla Whenever people agree with me, I always feel I must be wrong (O. Wilde)

[lazarus] Dialog window in Init Final Section

2008-01-08 Thread SteveG
Anybody know of a cross platform way of showing a message dialog within the Initialization and/or Finalization of a unit ? What I am after is an alert message if a dll fails to load / unload in the Init / Final section of the main unit. (GUI app) Cant use ShowMessage as message loop not

Re: [lazarus] StdOut on Linux b0rked

2008-01-08 Thread Vincent Snijders
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 yourfile I mean when I launch the program myself on the

Re: [lazarus] Latest svn fails to compile.

2008-01-08 Thread Paul Ishenin
Giuliano Colla пишет: Latest svn (r 13667) fails to compile (Linux - fpc 2.0.4). Unit lcl/ldocktree.pas complains that InflateRect is undefined. Adding LCLIntf to the uses clauses fixes the problem. InflateRect is defined in types.pas of fpc 2.2.0 Best regards, Paul Ishenin.

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] Latest svn fails to compile.

2008-01-08 Thread Paul Ishenin
Giuliano Colla wrote: Paul Ishenin ha scritto: Giuliano Colla пишет: Latest svn (r 13667) fails to compile (Linux - fpc 2.0.4). Unit lcl/ldocktree.pas complains that InflateRect is undefined. Adding LCLIntf to the uses clauses fixes the problem. InflateRect is defined in types.pas of fpc

Re: [lazarus] Latest svn fails to compile.

2008-01-08 Thread Vincent Snijders
Paul Ishenin schreef: Giuliano Colla wrote: Paul Ishenin ha scritto: Giuliano Colla пишет: Latest svn (r 13667) fails to compile (Linux - fpc 2.0.4). Unit lcl/ldocktree.pas complains that InflateRect is undefined. Adding LCLIntf to the uses clauses fixes the problem. InflateRect is defined

Re: [lazarus] Question about packages and units

2008-01-08 Thread Joost van der Sluis
Op dinsdag 08-01-2008 om 14:29 uur [tijdzone +0100], schreef Joost van der Sluis: Op dinsdag 08-01-2008 om 14:14 uur [tijdzone +0100], schreef Mattias Gärtner: Zitat von Joost van der Sluis [EMAIL PROTECTED]: Hi al, If you install the fpWeb package, create a new cgi-application

[lazarus] ScrollBox scrolling problem situation

2008-01-08 Thread Andrey Gusev
Can somebody comments situation with ScrollBox scrolling Win32 wrong implementation ? I have in view of http://bugs.freepascal.org/view.php?id=10471, http://bugs.freepascal.org/view.php?id=10400 issues, that still actual on svn 13339. More concrete: where and how much deeply to dig, to fix

[lazarus] ScrollBox scrolling problem situation

2008-01-08 Thread Andrey Gusev
* Andrey Gusev [EMAIL PROTECTED] [Tue, 08 Jan 2008 20:53:48 +0300]: Can somebody comments situation with ScrollBox scrolling Win32 wrong implementation ? I have in view of http://bugs.freepascal.org/view.php?id=10471, http://bugs.freepascal.org/view.php?id=10400 issues, that still actual on svn

Re: [lazarus] Changing LCL without rebuild Lazarus

2008-01-08 Thread Mattias Gaertner
On Tue, 08 Jan 2008 14:08:05 +0200 A.J. Venter [EMAIL PROTECTED] wrote: Fabio Dell'Aria wrote: Hi to all, I'm working on some LCL changes. To do this I have created some test projects but after every rebuild I see that my projects continue to uses the .ppu unit (do not rebuild my

[lazarus] OFF: TDBMemo + Firebird (UIB+FBDataset) = READ ONLY

2008-01-08 Thread Osvaldo TC Filho
did is TDBMemo ok with fields blob type 1 of firebird 2.0? It is ever read only here! Environment: Lazarus 0.9.25 svn GTK2 Ubuntu 7.10 UIB + TFBdataset Thanks for all _ To unsubscribe: mail [EMAIL PROTECTED] with

Re: [lazarus] ScrollBox scrolling problem situation

2008-01-08 Thread Mattias Gaertner
On Tue, 08 Jan 2008 20:55:59 +0300 Andrey Gusev [EMAIL PROTECTED] wrote: * Andrey Gusev [EMAIL PROTECTED] [Tue, 08 Jan 2008 20:53:48 +0300]: Can somebody comments situation with ScrollBox scrolling Win32 wrong implementation ? I have in view of

Re: [lazarus] Latest svn fails to compile.

2008-01-08 Thread Mattias Gaertner
On Tue, 08 Jan 2008 16:19:27 +0100 Vincent Snijders [EMAIL PROTECTED] wrote: Paul Ishenin schreef: Giuliano Colla wrote: Paul Ishenin ha scritto: Giuliano Colla пишет: Latest svn (r 13667) fails to compile (Linux - fpc 2.0.4). Unit lcl/ldocktree.pas complains that InflateRect is

Re: [lazarus] Question about packages and units

2008-01-08 Thread Mattias Gaertner
On Tue, 08 Jan 2008 16:39:16 +0100 Joost van der Sluis [EMAIL PROTECTED] wrote: Op dinsdag 08-01-2008 om 14:29 uur [tijdzone +0100], schreef Joost van der Sluis: Op dinsdag 08-01-2008 om 14:14 uur [tijdzone +0100], schreef Mattias Gärtner: Zitat von Joost van der Sluis [EMAIL PROTECTED]:

Re: [lazarus] Question about packages and units

2008-01-08 Thread Mattias Gaertner
On Tue, 08 Jan 2008 14:29:39 +0100 Joost van der Sluis [EMAIL PROTECTED] wrote: Op dinsdag 08-01-2008 om 14:14 uur [tijdzone +0100], schreef Mattias Gärtner: Zitat von Joost van der Sluis [EMAIL PROTECTED]: Hi al, If you install the fpWeb package, create a new cgi-application

Re: [lazarus] StdOut on Linux b0rked

2008-01-08 Thread A.J. Venter
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 yourfile I mean when I launch the

Re: [lazarus] StdOut on Linux b0rked

2008-01-08 Thread A.J. Venter
Well getcanid.sh is very simple: #!/bin/sh IP=`/sbin/route | grep default | awk '{print $2}'` FALLBACK=x.x.x.x. URIPATH=cgi-bin/getunitinformation.cgi if ! IDLINE=`wget -O - http://$IP/$URIPATH; 2/dev/null | grep UNITID` ; then if ! IDLINE=`wget -O -