Re: [Lazarus] Lazweb / fpWeb apache module initial project does not compile

2011-04-16 Thread Michael Van Canneyt
On Fri, 15 Apr 2011, ABorka wrote: Lazarus can not compile the initial project after File->New->Project->Apache Module, because it gives mod_apache1.lpr(35,15) Error: identifier idents no member "SetModuleRecord" Created a bug report about it: http://bugs.freepascal.org/view.php?id=19176

[Lazarus] Terminal in Lazarus

2011-04-16 Thread Geoffray Levasseur
Hi, I'm trying to create a build manager for own compiled package. The project is in a good way but the next step is a bit hard for me. To complete the software, I need to have an integrated terminal. Here are the constraint: 1 - I need to be able to use environment variable, so once the termin

Re: [Lazarus] screen.cursor := crHourglass and Linux

2011-04-16 Thread John Landmesser
Am 15.04.2011 21:41, schrieb DSK: Yes, your program is responsible for indicating that you have started [or finished] a long process. Ok, but my problem is different: in the app running on windows Hourglass is shown by: screen.cursor := crHourglass; but for linux you need: screen.cursor

Re: [Lazarus] screen.cursor := crHourglass and Linux

2011-04-16 Thread Mattias Gaertner
On Sat, 16 Apr 2011 11:40:59 +0200 John Landmesser wrote: > Am 15.04.2011 21:41, schrieb DSK: > > > > Yes, your program is responsible for indicating that you have started > > [or finished] a long process. > > > > Ok, but my problem is different: > > in the app running on windows Hourglass is

Re: [Lazarus] screen.cursor := crHourglass and Linux

2011-04-16 Thread John Landmesser
Am 16.04.2011 12:05, schrieb Mattias Gaertner: Not really, because the LCL is a event based/driven GUI engine. You must leave the main thread enough processing time. When processing a long operation you must call Application.ProcessMessages or put the operation into another queue. Otherwise your

Re: [Lazarus] Terminal in Lazarus

2011-04-16 Thread Graeme Geldenhuys
2011/4/16 Geoffray Levasseur : > In fact the best will be something like an xterm clone but in pascal... Take a look at the DoubleCommander project on SourceForge. They have already implement just that in their twin-view file manager. http://doublecmd.sourceforge.net I believe that project i

Re: [Lazarus] TIFF images

2011-04-16 Thread Marcos Douglas
On Fri, Apr 15, 2011 at 8:18 PM, leledumbo wrote: > AFAIK TTIFFImage (or something similar) is already supported in trunk. > The error was in this line: Image.Canvas.Brush.Color:= Panel2.Color; // = clBtnFace; The Panel2.Color was clDefault, not clBtnFace... (Excuse my lack of attention)

[Lazarus] Missing components when reading CCR through svn

2011-04-16 Thread Juha (gmail)
When I run this on cmd line: $ svn co https://lazarus-ccr.svn.sourceforge.net/svnroot/lazarus-ccr lazarus- ccr Then: $ cd lazarus-ccr and $ ls -l components/ drwxr-xr-x 6 juha juha 4096 16.4. 14:45 acs drwxr-xr-x 9 juha juha 4096 16.4. 14:45 beepfp drwxr-xr-x 3 juha juha 4096 16.4. 14:44 chelpe

Re: [Lazarus] screen.cursor := crHourglass and Linux

2011-04-16 Thread DSK
John, but for linux you need: screen.cursor := crHourglass; Application.ProcessMessages; the Application.ProcessMessages; line helps on Windows as well and [now that I check] is in the WaitCursor unit that I generally use ... sorry I trimmed it in the quote. -- DSK Posted with XanaNews 1.

[Lazarus] Lazarus, FPC, message files and errors (?)

2011-04-16 Thread Massimo Soricetti
Hello, I'm translating the FPC messages file in italian. I'm done, but when testing my new file I discovered that Lazarus reports more or less errors in a source file according to the FPC message file used! O___O Wtf? Explanation I was going to test my new messages file on my Lazarus. So

Re: [Lazarus] Lazarus, FPC, message files and errors (?)

2011-04-16 Thread Massimo Soricetti
On 16/04/2011 18:39, Massimo Soricetti wrote: Hello, I'm translating the FPC messages file in italian. I'm done, but when testing my new file I discovered that Lazarus reports more or less errors in a source file according to the FPC message file used! O___O I posted too soon. A short investi

Re: [Lazarus] Missing components when reading CCR through svn

2011-04-16 Thread Vincent Snijders
2011/4/16 Juha (gmail) : > When I run this on cmd line: > $ svn co https://lazarus-ccr.svn.sourceforge.net/svnroot/lazarus-ccr lazarus- > ccr > > Many componens are missing, including lNet, Lui controls, fppkg gui etc... > However, I can download them using a web browser. > What is going on? I don

Re: [Lazarus] Missing components when reading CCR through svn

2011-04-16 Thread Graeme Geldenhuys
On 16 April 2011 19:30, Vincent Snijders wrote: > > I think those components are components that you can download, but the > authors/porters/maintainers have chosen to host the source version > control system elsewhere. True, plus I believe there are CVS and Git repositories too... all part of La

Re: [Lazarus] Missing components when reading CCR through svn

2011-04-16 Thread Peter Williams
Hi Vincent and All, > Date: Sat, 16 Apr 2011 20:08:12 +0200 > From: graemeg.li...@gmail.com > To: lazarus@lists.lazarus.freepascal.org > Subject: Re: [Lazarus] Missing components when reading CCR through svn > > On 16 April 2011 19:30, Vincent Snijders wrote: > > > > I think those components ar

Re: [Lazarus] Missing components when reading CCR through svn

2011-04-16 Thread Juha (gmail)
Vincent Snijders kirjoitti lauantai, 16. huhtikuuta 2011 20:30:34: > 2011/4/16 Juha (gmail) : > > Many componens are missing, including lNet, Lui controls, fppkg gui > > etc... However, I can download them using a web browser. > > What is going on? > > I don't see them at > https://lazarus-ccr.svn

[Lazarus] Master/Detail Relation

2011-04-16 Thread Leonardo M . Ramé
Hi, I was looking at SqlDb components and I can't find any property to link two datasets in a Master/Detail relation, as in Delphi. Is such feature already implemented? any tutorial/wiki?. Thanks in advance, -- Leonardo M. Ramé http://leonardorame.blogspot.com -- ___

Re: [Lazarus] Terminal in Lazarus

2011-04-16 Thread Geoffray Levasseur
Le samedi 16 avril 2011 12:37:23, Graeme Geldenhuys a écrit : > Take a look at the DoubleCommander project on SourceForge. They have > already implement just that in their twin-view file manager. > > >http://doublecmd.sourceforge.net > > I believe that project is GPL based, so not sure if yo

Re: [Lazarus] Missing components when reading CCR through svn

2011-04-16 Thread Vincent Snijders
2011/4/16 Juha (gmail) : > Vincent Snijders kirjoitti lauantai, 16. huhtikuuta 2011 20:30:34: >> 2011/4/16 Juha (gmail) : >> > Many componens are missing, including lNet, Lui controls, fppkg gui >> > etc... However, I can download them using a web browser. >> > What is going on? >> >> I don't see t

[Lazarus] TRichView (ccr) component and Shareware version of it... any users here?

2011-04-16 Thread Peter Williams
Hi All, I have just finished using SVN to check out the Lazarus-ccr from SourceForge. I am looking at the RichView component demo: TRichView Demo and Help Program (Copyright(c) 1997,98 by Tkachenko S.V.) IntroductionTRichView controls can contain:- text with various fonts - hypertext

Re: [Lazarus] Master/Detail Relation

2011-04-16 Thread Leonardo M . Ramé
On 2011-04-16 15:56:19 -0300, Leonardo M. Ramé wrote: > Hi, I was looking at SqlDb components and I can't find any property to > link two datasets in a Master/Detail relation, as in Delphi. > > Is such feature already implemented? any tutorial/wiki?. > > Thanks in advance, > -- I found the solu

[Lazarus] Lazarus SVN 30328 is not compiling

2011-04-16 Thread ABorka
C:/pp/bin/i386-win32/ppc386.exe -MObjFPC -Scghi -O1 -gl -vew -l -dLCL -dLCLwin32 -Fu../lcl/units/i386-win32/win32 -Fu../lcl/units/i386-win32 -Fu../packager/units/i386-win32 -Fu. -FE. -FUunits/i386-win32 -di386 ideintf.pas Free Pascal Compiler version 2.5.1 [2011/04/16] for i386 Copyright (c) 19

Re: [Lazarus] Master/Detail Relation

2011-04-16 Thread Peter Williams
Hi Leonardo, > Date: Sat, 16 Apr 2011 18:39:05 -0300 > From: l.r...@griensu.com > To: lazarus@lists.lazarus.freepascal.org > Subject: Re: [Lazarus] Master/Detail Relation > > On 2011-04-16 15:56:19 -0300, Leonardo M. Ramé wrote: > > Hi, I was looking at SqlDb components and I can't find any prop

Re: [Lazarus] Lazarus SVN 30328 is not compiling

2011-04-16 Thread Paul Ishenin
17.04.2011 7:13, ABorka wrote: propedits.pp(1781,5) Error: Expected another 1 array elements propedits.pp(6673) Fatal: There were 1 errors compiling module, stopping Fatal: Compilation aborted Fixed in r30332. Best regards, Paul Ishenin -- ___ Lazaru