Re: [lazarus] TOpenDialog Limitation?

2006-08-03 Thread Graeme Geldenhuys
Can you give more detais? What platform are you using, Widget Set, etc... Regards, Graeme. On 8/2/06, Arí Ricardo Ody [EMAIL PROTECTED] wrote: I have an application that uses an TOpenDialog to capture a list of files to be processed. It seems that Execute method returns false when the user

Re: [lazarus] TOpenDialog Limitation?

2006-08-03 Thread Arí Ricardo Ody
May you explain what kind of details? The platform is Windows XP and if you explain me how to describe how is the widget set, it will be my pleasure inform you. The project was compiled using Lazarus 0.9.16 with FPC version 2.0.2 [2006/05/28]. I can send you the project for compilation and

Re: [lazarus] TOpenDialog Limitation?

2006-08-03 Thread Vincent Snijders
Arí Ricardo Ody schreef: May you explain what kind of details? The platform is Windows XP and if you explain me how to describe how is the widget set, it will be my pleasure inform you. The project was compiled using Lazarus 0.9.16 with FPC version 2.0.2 [2006/05/28]. I can send you the

Re: [lazarus] TOpenDialog Limitation?

2006-08-03 Thread Vincent Snijders
Arí Ricardo Ody schreef: May you explain what kind of details? The platform is Windows XP and if you explain me how to describe how is the widget set, it will be my pleasure inform you. The project was compiled using Lazarus 0.9.16 with FPC version 2.0.2 [2006/05/28]. I can send you the

Re: [lazarus] TOpenDialog Limitation?

2006-08-03 Thread Arí Ricardo Ody
As it's obvious I'm using AllowMultiSelect=true. Some messages ago Mattias said that he tested with 1e3 files under linux... Is there a way to correct the limitation in the windows version? I can't use linux because here, in the company I work, people use windows(blargh!). Regards Ricardo

Re: [lazarus] TOpenDialog Limitation?

2006-08-03 Thread Graeme Geldenhuys
On 8/3/06, Vincent Snijders [EMAIL PROTECTED] wrote: I fear there is some hard coded constraint on the total length of the file names: line 234 of lcl\interfaces\win32\win32wsdialogs.pp: SizeStr:=15*MAX_PATH // Tested with 210 selected files Ah, hence the reason I asked what platform

[lazarus] Inserting CPU and OS type in output filename

2006-08-03 Thread Mark Morgan Lloyd
Can the CPU and OS lazarus is generating code for be inserted automatically in the target file name? Something like myproject_$OSTARGET_$CPUTARGET in the project dialaogue? -- Mark Morgan Lloyd markMLl .AT. telemetry.co .DOT. uk [Opinions above are the author's, not those of his employers or

[lazarus] is lazarus / fpc xp 64 / vista compatible ?

2006-08-03 Thread Lepidosteus
Hello, just wanted to know if I can assume developping with lazarus will result in working executable on these os ? In particular, is fpc able to compile for x64 windows (or at least compile on it in 32 bits mode), and is lazarus able to use the news windows vista design (avalon) ? Thanks for

Re: [lazarus] Inserting CPU and OS type in output filename

2006-08-03 Thread Felipe Monteiro de Carvalho
On 8/3/06, Mark Morgan Lloyd [EMAIL PROTECTED] wrote: Can the CPU and OS lazarus is generating code for be inserted automatically in the target file name? Something like myproject_$OSTARGET_$CPUTARGET in the project dialaogue? You can achieve that by creating a makefile for your project. There

Re: [lazarus] Inserting CPU and OS type in output filename

2006-08-03 Thread Mattias Gaertner
On Thu, 03 Aug 2006 15:20:10 + Mark Morgan Lloyd [EMAIL PROTECTED] wrote: Can the CPU and OS lazarus is generating code for be inserted automatically in the target file name? Something like myproject_$OSTARGET_$CPUTARGET in the project dialaogue? Now you can just do that. Mattias

Re: [lazarus] Inserting CPU and OS type in output filename

2006-08-03 Thread Graeme Geldenhuys
On 8/3/06, Mattias Gaertner [EMAIL PROTECTED] wrote: Can the CPU and OS lazarus is generating code for be inserted automatically in the target file name? Something like myproject_$OSTARGET_$CPUTARGET in the project dialaogue? Now you can just do that. Mattias hehe I always laugh when

Re: [lazarus] Inserting CPU and OS type in output filename

2006-08-03 Thread Mark Morgan Lloyd
Felipe Monteiro de Carvalho wrote: On 8/3/06, Mark Morgan Lloyd [EMAIL PROTECTED] wrote: Can the CPU and OS lazarus is generating code for be inserted automatically in the target file name? Something like myproject_$OSTARGET_$CPUTARGET in the project dialaogue? You can achieve that by

Re: [lazarus] Inserting CPU and OS type in output filename

2006-08-03 Thread Mark Morgan Lloyd
Mattias Gaertner wrote: Can the CPU and OS lazarus is generating code for be inserted automatically in the target file name? Something like myproject_$OSTARGET_$CPUTARGET in the project dialaogue? Now you can just do that. Umm. When you say now do you mean that facility has just gone in

[lazarus] Decimal separator problem; how to force a '.'

2006-08-03 Thread Alexandre Leclerc
Hi all, I use FloatToStr and it uses local settings for the formating of the number. But I would like a very crude machine compatible number... ie: '1,23$ = 1.23' or again '1,234,222.12 = 1234222.12' Anything I can do to have this result very simply? -- Alexandre Leclerc

[lazarus] Abstract class implementation on different platforms

2006-08-03 Thread Graeme Geldenhuys
Hi, How do I do the following using FPC with Makefile's or a Lazarus Package? I have a TGfxCanvas abstract class (something like the TFPCustomCanvas class in the graphics.pp unit) and it gets implemented differently for different platforms. Currently Win32 and X11, but others will follow later.

Re: [lazarus] Abstract class implementation on different platforms

2006-08-03 Thread Graeme Geldenhuys
Apologies! That unit came from a different project (LPTK) and not Lazarus. To many files open at once in the editor. Regards, Graeme On 8/3/06, Vincent Snijders [EMAIL PROTECTED] wrote: Graeme Geldenhuys schreef: I don't want to use IFDEF's in my code if possible. A bad example is the

Re: Decimal separator problem; how to force a '.'

2006-08-03 Thread Alexandre Leclerc
2006/8/3, Alexandre Leclerc [EMAIL PROTECTED]: Hi all, I use FloatToStr and it uses local settings for the formating of the number. But I would like a very crude machine compatible number... ie: '1,23$ = 1.23' or again '1,234,222.12 = 1234222.12' In fact (I want to display the problem very

Re: Decimal separator problem; how to force a '.'

2006-08-03 Thread Burkhard Carstens
Am Donnerstag, 3. August 2006 21:33 schrieb Alexandre Leclerc: 2006/8/3, Alexandre Leclerc [EMAIL PROTECTED]: Hi all, I use FloatToStr and it uses local settings for the formating of the number. But I would like a very crude machine compatible number... ie: '1,23$ = 1.23' or again

Re: Decimal separator problem; how to force a '.'

2006-08-03 Thread Arí Ricardo Ody
I have similar trouble in the past. What do I do: Before StrToFloat I call a function that replaces the comma by decimal point. Probably there is a better solution. We'll see it now. Best regards (with God on our side) Ricardo At 16:33 3/8/2006, you wrote: 2006/8/3, Alexandre Leclerc [EMAIL

Re: Decimal separator problem; how to force a '.'

2006-08-03 Thread Alexandre Leclerc
2006/8/3, Arí Ricardo Ody [EMAIL PROTECTED]: I have similar trouble in the past. What do I do: Before StrToFloat I call a function that replaces the comma by decimal point. Probably there is a better solution. We'll see it now. Changing the DecimalSeparator like Burkhard Carstens and you said

Re: [lazarus] is lazarus / fpc xp 64 / vista compatible ?

2006-08-03 Thread Marco van de Voort
On Thu, Aug 03, 2006 at 07:33:17PM +0200, Lepidosteus wrote: Hello, just wanted to know if I can assume developping with lazarus will result in working executable on these os ? In particular, is fpc able to compile for x64 windows Yes, but only in the development version, and still in

Re: Decimal separator problem; how to force a '.'

2006-08-03 Thread Vincent Snijders
Alexandre Leclerc wrote: 2006/8/3, Alexandre Leclerc [EMAIL PROTECTED]: Hi all, I use FloatToStr and it uses local settings for the formating of the number. But I would like a very crude machine compatible number... ie: '1,23$ = 1.23' or again '1,234,222.12 = 1234222.12' In fact (I want to

Re: [lazarus] is lazarus / fpc xp 64 / vista compatible ?

2006-08-03 Thread Lepidosteus
So this pretty much boils down to the follow questions: - So what _exact_ Avalon features are you thinking of? And in what of the above categories do they fall? - Is there an API available? Documentation? Examples? Mostly your two first points, - stuff that is simply being changed by changing

Re: Decimal separator problem; how to force a '.'

2006-08-03 Thread Alexandre Leclerc
2006/8/3, Alexandre Leclerc [EMAIL PROTECTED]: 2006/8/3, Vincent Snijders [EMAIL PROTECTED]: str(123.456,s); val(s,e,errorcode); Hi Vincent, yes! I already saw that function before; but I was never able to find the really actual implementation of it. Now, I'll use it because it does it all

[lazarus] Mantis?

2006-08-03 Thread m2
Hello, I just reported 3 bugs but Mantis registered 4 (twice the same, #7224 and #7226). mm _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at

[lazarus] JEDI port to Lazarus.

2006-08-03 Thread Henrique P Faria
Hi Marco van de Voort. Are you directly involved with development of the JEDI Code Library ? I´d like to know if the JEDI Team will port the library to Lazarus? Henrique. _ To unsubscribe: mail [EMAIL PROTECTED] with