Re: [lazarus] Form.Align without effect

2007-10-21 Thread Graeme Geldenhuys
What should the form align too?? I can understand a component in a form with Align := alClient (or any other align type), because it has a parent component to align to. What does Delphi do with a Form1.Align := alClient statement? From the Kylix 3 help: TAlign specifies the alignment of a

Re: [lazarus] Form.Align without effect

2007-10-21 Thread Thomas Moritz
Am Sonntag, 21. Oktober 2007 10:53:13 schrieb Graeme Geldenhuys: Hello Graeme, What should the form align too?? I can understand a component in a form with Align := alClient (or any other align type), because it has a parent component to align to. What does Delphi do with a Form1.Align :=

Re: [lazarus] Form.Align without effect

2007-10-21 Thread Graeme Geldenhuys
On 21/10/2007, Thomas Moritz [EMAIL PROTECTED] wrote: Imho, Delphi set the FormSize to DesktopArea. ( ScreenSize - Taskbar ) OK, that's clever. Interestingly the Kylix 3 help doesn't mention anything of that behavior. Form1.Height:=Screen.Height-(Screen.Height div 100*8); It's only good

Re: [lazarus] Building Lazarus for linux-sparc

2007-10-21 Thread Marco van de Voort
On Sat, Oct 20, 2007 at 08:23:54PM +, Mark Morgan Lloyd wrote: I've got Lazarus 0.9.23 building and generally running for Linux on a SPARC system, nothing special needed to be done although there's a few e.g. debugger issues that I need to investigate. Underlying FPC is 2.2.0 built from

Re: [lazarus] Building Lazarus for linux-sparc

2007-10-21 Thread Marco van de Voort
On Sat, Oct 20, 2007 at 08:23:54PM +, Mark Morgan Lloyd wrote: few related and had to change a makefile to get dbf.o etc. to build. dbf will probably not function on Sparc because it is not endianness clean. _ To

Re: [lazarus] Building Lazarus for linux-sparc

2007-10-21 Thread Mark Morgan Lloyd
few related and had to change a makefile to get dbf.o etc. to build. dbf will probably not function on Sparc because it is not endianness clean. Thanks, noted. I'd better keep my hands off bigide on SPARC at least until I've built up a far better grounding in how things work. I'll carry on

Re: [lazarus] i18n Question

2007-10-21 Thread Mattias Gaertner
On Sun, 21 Oct 2007 01:30:21 +0100 Luis Rodrigues [EMAIL PROTECTED] wrote: On Tue, 2007-10-16 at 01:03 +0200, Mattias Gaertner wrote: On Mon, 15 Oct 2007 16:28:23 +0100 Luis Rodrigues [EMAIL PROTECTED] wrote: We're using FOnReadStringProperty from reader.inc to translate the string

Re: [lazarus] i18n Question

2007-10-21 Thread Mattias Gaertner
On Sun, 21 Oct 2007 13:48:18 +0200 Mattias Gaertner [EMAIL PROTECTED] wrote: On Sun, 21 Oct 2007 01:30:21 +0100 Luis Rodrigues [EMAIL PROTECTED] wrote: On Tue, 2007-10-16 at 01:03 +0200, Mattias Gaertner wrote: On Mon, 15 Oct 2007 16:28:23 +0100 Luis Rodrigues [EMAIL PROTECTED] wrote:

Re: [lazarus] Form.Align without effect

2007-10-21 Thread Mattias Gaertner
On Sun, 21 Oct 2007 12:15:40 +0200 Graeme Geldenhuys [EMAIL PROTECTED] wrote: On 21/10/2007, Thomas Moritz [EMAIL PROTECTED] wrote: Imho, Delphi set the FormSize to DesktopArea. ( ScreenSize - Taskbar ) Sounds like maximizing. OK, that's clever. Interestingly the Kylix 3 help doesn't

Re: [lazarus] Building Lazarus for linux-sparc

2007-10-21 Thread Mattias Gaertner
On Sun, 21 Oct 2007 11:45:36 + Mark Morgan Lloyd [EMAIL PROTECTED] wrote: few related and had to change a makefile to get dbf.o etc. to build. dbf will probably not function on Sparc because it is not endianness clean. Thanks, noted. I'd better keep my hands off bigide on SPARC

Re: [lazarus] Error when Updgrading to lastest ( 20/10 ) snapshot...

2007-10-21 Thread Dominique Louis
Hi Jesus et al, I grabbed last night's snapshot and the error still persists. Can someone please explain why I need Printer4Lazarus in my Mac OS X project, especially if I am using Printers and PrinterDlg? Also if I remove the reference to Printer4Lazarus, it still comes up with the same

Re: [lazarus] Building Lazarus for linux-sparc

2007-10-21 Thread Marco van de Voort
On Sun, Oct 21, 2007 at 02:16:32PM +0200, Mattias Gaertner wrote: few related and had to change a makefile to get dbf.o etc. to build. dbf will probably not function on Sparc because it is not endianness clean. Thanks, noted. I'd better keep my hands off bigide on SPARC at

Re: [lazarus] Error when Updgrading to lastest ( 20/10 ) snapshot...

2007-10-21 Thread Dominique Louis
Hi Philip, I have a project that looks like this... program MyProg; uses {$IFDEF UNIX}{$IFDEF Use Cthreads} cthreads, {$ENDIF}{$ENDIF} Interfaces; begin end; As you can see the project is rather empty, but I'm using the 20th and now the 21st build and when I try to compile it, I

Re: [lazarus] Error when Updgrading to lastest ( 20/10 ) snapshot...

2007-10-21 Thread Vincent Snijders
Dominique Louis schreef: Hi Philip, I have a project that looks like this... program MyProg; uses {$IFDEF UNIX}{$IFDEF Use Cthreads} cthreads, {$ENDIF}{$ENDIF} Interfaces; begin end; Not end. ? As you can see the project is rather empty, but I'm using the 20th and now the

Re: [lazarus] Form.Align without effect

2007-10-21 Thread Thomas Moritz
Am Sonntag, 21. Oktober 2007 14:10:40 schrieb Mattias Gaertner: Hello Mattias, Let the window manager do the maximization. Sorry! At my tests, it looks that the MainForm behind the kicker. A Statusbar displayed the correct size. Thanks! The MainForm must to keep this maximized size oneself.

Re: [lazarus] Error when Updgrading to lastest ( 20/10 ) snapshot...

2007-10-21 Thread Dominique Louis
I think I have found what causes the problem. Everytime you drop a TPrintDialog onto a Lazarus form, it adds Printer4Lazarus both are a required package and to the Project's uses clause. This then causes the problem mentioned earlier. If I then remove the required package and remove the

Re: [lazarus] Error when Updgrading to lastest ( 20/10 ) snapshot...

2007-10-21 Thread Dominique Louis
Vincent Snijders wrote: Not end. ? Yes it is ment to be end. As it turns out it was the required package causing that problem, but removing it causes other Printer related issues, as mentioned in my other email. Dominique.

Re: [lazarus] Error when Updgrading to lastest ( 20/10 ) snapshot...

2007-10-21 Thread Dominique Louis
Vincent Snijders wrote: You must use printers4lazarus, otherwise you cannot have a printdialog. PrintDialog is not part of the LCL. If I add printers4lazarus to the project this then takes me full circle back to to my original problem and error. If I remove printers4lazarus I get the

Re: [lazarus] Error when Updgrading to lastest ( 20/10 ) snapshot...

2007-10-21 Thread Vincent Snijders
Dominique Louis schreef: Vincent Snijders wrote: You must use printers4lazarus, otherwise you cannot have a printdialog. PrintDialog is not part of the LCL. If I add printers4lazarus to the project this then takes me full circle back to to my original problem and error. If I remove

Re: [lazarus] Error when Updgrading to lastest ( 20/10 ) snapshot...

2007-10-21 Thread Jesus Reyes
--- Dominique Louis [EMAIL PROTECTED] escribió: Vincent Snijders wrote: You must use printers4lazarus, otherwise you cannot have a printdialog. PrintDialog is not part of the LCL. If I add printers4lazarus to the project this then takes me full circle back to to my original

Re: [lazarus] Error when Updgrading to lastest ( 20/10 ) snapshot...

2007-10-21 Thread Jesus Reyes
--- Dominique Louis [EMAIL PROTECTED] escribió: Hi Jesus et al, I grabbed last night's snapshot and the error still persists. Can someone please explain why I need Printer4Lazarus in my Mac OS X project, especially if I am using Printers and PrinterDlg? Also if I remove the

Re: [lazarus] Building Lazarus for linux-sparc

2007-10-21 Thread Mark Morgan Lloyd
Marco van de Voort wrote: I talked to Neli, and he said endianess patches had been merged with TDBF. So I enabled it for all OSes for now in 2.3.1 (and soon 2.2) Thanks both. So if I read that correctly I need to keep an eye open for a revised FPC 2.2.x, or try 2.3.x. First thing I want to

Re: [lazarus] Form.Align without effect

2007-10-21 Thread Mattias Gaertner
On Sun, 21 Oct 2007 17:50:39 +0200 Thomas Moritz [EMAIL PROTECTED] wrote: Am Sonntag, 21. Oktober 2007 14:10:40 schrieb Mattias Gaertner: Hello Mattias, Let the window manager do the maximization. Sorry! At my tests, it looks that the MainForm behind the kicker. What do you mean with

Re: [lazarus] App Localization

2007-10-21 Thread wile64
Hi, How indicate we ResourceString? I use variables for Prefix, Separator and Indent Prefix = 'RS'; Separator = '_'; Indent = ' '; // for indent List Example for ResourceString: RSForm1_Caption = 'Form1'; RSForm1_Hint = 'Sample'; RSMemo1_Hint:= 'tfdqa'; RSMemo1_Lines.Strings0:=

Re: [lazarus] App Localization

2007-10-21 Thread Mattias Gaertner
On Sun, 21 Oct 2007 23:24:28 +0200 wile64 [EMAIL PROTECTED] wrote: Hi, How indicate we ResourceString? I use variables for Prefix, Separator and Indent Prefix = 'RS'; Separator = '_'; Indent = ' '; // for indent List Example for ResourceString: RSForm1_Caption = 'Form1';

Re: [lazarus] Close component?

2007-10-21 Thread Tobias Giesen
Hello, here's a description of when this happens. This is probably not so important and it only happens with some pairs of inherited forms, so I don't know if I can supply a sample project for this issue. The question Close component? is never shown when I am closing a form. The question pops

[lazarus] Lazarus Binary - QT - Mac OSX ?

2007-10-21 Thread Roberto A. Berrospe Machin
Hi. Is there any one who got Lazarus compiled and working with QT including the IDE ? If there is, can you share with this intel mac user the binaries? :) Thanks! Roberto.

Re: [lazarus] Close component?

2007-10-21 Thread Mattias Gaertner
On Mon, 22 Oct 2007 00:31:05 +0200 Tobias Giesen [EMAIL PROTECTED] wrote: Hello, here's a description of when this happens. This is probably not so important and it only happens with some pairs of inherited forms, so I don't know if I can supply a sample project for this issue. The

Re: [lazarus] Lazarus Binary - QT - Mac OSX ?

2007-10-21 Thread zeljko
On Monday 22 October 2007 00:41, Roberto A. Berrospe Machin wrote: Hi. Is there any one who got Lazarus compiled and working with QT including the IDE ? here is screenshoot http://wiki.lazarus.freepascal.org/index.php/Qt_Interface also qtMac link is here. If there is, can you share with

Re: [lazarus] Lazarus Binary - QT - Mac OSX ?

2007-10-21 Thread Roberto A. Berrospe Machin
Ok, thanks i got it compiled... just figured its not complete :p thanks. Roberto. _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at