Re: [lazarus] GTK2 Under Windows

2007-11-15 Thread vsnijders
I would like to test my program under Windows and GTK2 (mainly for UTF8 issues with the default win32 interface). What UTF8 issues? Do you use the unicode enabled version for win32? See wiki for details on the recompilation. We are about to switch to enable unicode support by default on

Re: [lazarus] User friendly Build Lazarus pragmatic dialog

2007-08-29 Thread vsnijders
- Origineel bericht - Van: Felipe Monteiro de Carvalho [EMAIL PROTECTED] Datum: woensdag, 29 augustus 2007 11:45 Onderwerp: Re: [lazarus] User friendly Build Lazarus pragmatic dialog On 8/28/07, Giuliano Colla [EMAIL PROTECTED] wrote: This means that currently compiling for wince

Re: [lazarus] User friendly Build Lazarus pragmatic dialog

2007-08-29 Thread vsnijders
- Origineel bericht - Van: Felipe Monteiro de Carvalho [EMAIL PROTECTED] Datum: woensdag, 29 augustus 2007 13:21 Onderwerp: Re: [lazarus] User friendly Build Lazarus pragmatic dialog On 8/29/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: arm wince is certainly advanced (three

Re: [lazarus] Ide doesn't find units in the fcl (or outside the project)

2007-07-10 Thread vsnijders
- Original Message - From: Luca Olivetti [EMAIL PROTECTED] Date: Tuesday, July 10, 2007 11:38 am Subject: [lazarus] Ide doesn't find units in the fcl (or outside the project) I surely did something stupid, but lately, every time I do a find declaration, the ide bombs on units that

Re: [lazarus] Question from 100000 of dollars

2007-07-05 Thread vsnijders
- Original Message - From: Guadagnini David [EMAIL PROTECTED] Date: Thursday, July 5, 2007 9:34 am Subject: [lazarus] Question from 10 of dollars Boys, when the next official release should be anticipated (not beta)? I don't think anybody knows, and my guess is as good as

Re: [lazarus] Wince windows crosscompile installer

2007-07-03 Thread vsnijders
- Original Message - From: Alvise Nicoletti [EMAIL PROTECTED] Date: Monday, July 2, 2007 4:53 pm Subject: Re: [lazarus] Wince windows crosscompile installer Lazarus is a good piece of software itself, but I think it's wasted for only playing purposes. Last night I played some more

Re: [lazarus] Wince windows crosscompile installer

2007-07-02 Thread vsnijders
- Original Message - From: Alvise Nicoletti [EMAIL PROTECTED] Date: Monday, July 2, 2007 3:51 pm Subject: [lazarus] Wince windows crosscompile installer Hi... the ftp://ftp.hu.freepascal.org/pub/lazarus/cross/ directory, where I used to download wince crosscompiler installer, is

Re: [lazarus] Wince windows crosscompile installer

2007-07-02 Thread vsnijders
- Original Message - From: Alvise Nicoletti [EMAIL PROTECTED] Date: Monday, July 2, 2007 4:30 pm Subject: Re: [lazarus] Wince windows crosscompile installer My boss don't pays me to compile my IDE, but to produce software, Your boss doesn't pay me or anybody else to create a Wince

Re: [lazarus] LCL in DLL

2007-06-27 Thread vsnijders
Btw. can someone please make the default extension for libraries '.dll' instead of '.exe'. It doesn't make any sense, does it? AFAIK, it is .dll if you create a library project and not an application. Vincent _ To

Re: [lazarus] last svn fpc laz when build

2007-06-27 Thread vsnijders
- Original Message - From: Yury Sidorov [EMAIL PROTECTED] Yes. Lazarus doesn build with FPC 2.3.1 :( Fixed. Vincent _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject

[lazarus] Exception if saving an image fails (bug 8260)

2007-06-27 Thread vsnijders
Hi, I am trying to fix bug 8260: if a bitmap is written, but there is not enough space, no Exception is raised. I wondered what Exception to use. For inspiration I tried the xpmwriter in the fcl-image package, but that doesn't raise an exception either, when saving failes due to too little

Re: [lazarus] Using bfd

2007-06-26 Thread vsnijders
DBF is the database classes right? If so, they are part of FPC, so there shouldn't be any problems using them in Lazarus. Just include the DB, DBF units in the uses clause and you have access to the TDBF class. Put on your glasses, Graeme :-) DBF bfd. On 26/06/07, Steven Graham

Re: [lazarus] When i compile sqldblaz i get:

2007-06-25 Thread vsnijders
- Original Message - From: Uwe Grauer [EMAIL PROTECTED] Date: Monday, June 25, 2007 1:18 pm Subject: [lazarus] When i compile sqldblaz i get: When trying to install component sqldblaz.lpk i get_ /home/uwe/src/lazarus/ide/lazarus.pp(1,1) Fatal: Can't find unit Interfaces What is

Re: [lazarus] When i compile sqldblaz i get:

2007-06-25 Thread vsnijders
- Original Message - From: Uwe Grauer [EMAIL PROTECTED] When trying to install component sqldblaz.lpk i get_ /home/uwe/src/lazarus/ide/lazarus.pp(1,1) Fatal: Can't find unit Interfaces What is missing? The LCL compiled for the widgetset and compiler you are currently

Re: [lazarus] Unit output directory (-FU) is wrong in Compiler Options

2007-06-21 Thread vsnijders
- Original Message - From: Graeme Geldenhuys [EMAIL PROTECTED] On 21/06/07, Tiziano_mk [EMAIL PROTECTED] wrote: Put the exe name of your App into the field Target file name: in Project Options|Output Settings and it will be compiled as expected in the project directory (this

Re: [lazarus] Unit output directory (-FU) is wrong in Compiler Options

2007-06-21 Thread vsnijders
- Original Message - From: Graeme Geldenhuys [EMAIL PROTECTED] Ok, so that solves half of the issue... I still think it is weird and confusing that 'Unit output directory (-FU)' = units gives a different result compared to the exact same compiler switch -FUunits in the 'Other' tab.

Re: [lazarus] win32 snapshots with gdb 6.6

2007-06-19 Thread vsnijders
- Original Message - From: Luca Olivetti [EMAIL PROTECTED] Date: Tuesday, June 19, 2007 9:16 am Subject: Re: [lazarus] win32 snapshots with gdb 6.6 En/na Vincent Snijders ha escrit: Hi, I want to inform you that since a couple of days, the lazarus snapshots come with gdb 6.6

Re: [lazarus] WidgetSet define

2007-06-14 Thread vsnijders
Is there a widgetset define for which widgetset the LCL is compiled for?Something like {$IFDEF GTK1_INTF} {$IFDEF GTK2_INTF} {$IFDEF WIN32_INTF} In one of my units I want to check, so that at compile time I can use the right .inc file for the compiled widgetset. If compiled by the IDE or

[lazarus] win32 message dialog (bug 1062)

2007-06-13 Thread vsnijders
I wrote a patch to implement using the win32 messagebox for the lazarus showmessage and messagedlg function. http://www.freepascal.org/mantis/view.php?id=1062 I am not completely satified with the result though. Given the following program: ShowMessage('Test'); MessageDlg('Caption','A

Re: [lazarus] SynEdit broken

2007-05-24 Thread vsnijders
- Original Message - From: Darius Blaszijk [EMAIL PROTECTED] Date: Thursday, May 24, 2007 9:01 am Subject: [lazarus] SynEdit broken After updating to latest revision just now, I can see no code anymore in SynEdit. Just a blank control. (WinXP, 2.0.4) The problem lies in revision

Re: [lazarus] Lazarus translations

2007-05-22 Thread vsnijders
There used to be a place where I could paced the compiled po files, so the translation will take be applied. I'm unable to locate such place for my additional translation. What am I missing ? Lazarus doesn't use the compiled po (= mo) files anymore, but reads the po files directly.

Re: [lazarus] Font color button stay always black

2007-05-21 Thread vsnijders
- Original Message - From: Mattias Gaertner [EMAIL PROTECTED] On Fri, 18 May 2007 15:28:52 +0200 fedorax [EMAIL PROTECTED] wrote: Hello, In my project i've some buttons whith font color clwhite but when i run project all buttons font color turn to black. In the

Re: [lazarus] GUITestRunner and nested tests

2007-05-21 Thread vsnijders
- Original Message - From: Graeme Geldenhuys [EMAIL PROTECTED] Date: Monday, May 21, 2007 11:27 am Subject: [lazarus] GUITestRunner and nested tests Hi, I gather that the GUITestRunner doesn't support nested tests in the Treeview? By that I mean, the Treeview wouldn't reflect the

Re: [lazarus] GUITestRunner and nested tests

2007-05-21 Thread vsnijders
- Original Message - From: Graeme Geldenhuys [EMAIL PROTECTED] Date: Monday, May 21, 2007 1:13 pm Subject: Re: [lazarus] GUITestRunner and nested tests On 5/21/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: No, you are wrong. Try to build lazarus\test\runtestsgui.lpi. Ummm...

Re: [lazarus] New features since Delphi 7...

2007-05-21 Thread vsnijders
- Original Message - From: Giulio Bernardi [EMAIL PROTECTED] Date: Monday, May 21, 2007 6:16 pm Subject: Re: [lazarus] New features since Delphi 7... New Delphi language features since Delphi 7... http://dn.codegear.com/article/34324 Looking at the New language features page

Re: GetFPImageReaderForFileExtension question for .jpg

2006-11-28 Thread vsnijders
Normally when using the package (jpegforlazarus or images4lazarus), the IDE adds the unit to program source and thus the lazjpeg unit is used. Now we are at the topic, last weekend I was demonstrating with a jpeg in a TPicture. When loading the image in the IDE, the *.jpg fiter

Re: GetFPImageReaderForFileExtension question for .jpg

2006-11-28 Thread vsnijders
- Origineel bericht - Van: [EMAIL PROTECTED] (Marco van de Voort) Datum: dinsdag, 28 november 2006 12:34 Onderwerp: Re: GetFPImageReaderForFileExtension question for .jpg Mattias Gaertner wrote: Using the unit lazjpeg should be enough, no other code should be required ?

Re: GetFPImageReaderForFileExtension question for .jpg

2006-11-28 Thread vsnijders
[EMAIL PROTECTED] wrote: Normally when using the package (jpegforlazarus or images4lazarus), the IDE adds the unit to program source and thus the lazjpeg unit is used. Now we are at the topic, last weekend I was demonstrating with a jpeg in a TPicture. When loading the image

[lazarus] TStaticText.TabOrder

2006-11-28 Thread vsnijders
Can somebody explain me, what is the puprose of having TStaticText.TabOrder? See http://www.freepascal.org/mantis/view.php?id=7623 and http://www.freepascal.org/mantis/view.php?id=7644? Vincent _ To unsubscribe: mail [EMAIL

Re: [lazarus] usage of TTabControlStrings

2006-10-25 Thread vsnijders
- Origineel bericht - Van: Graeme Geldenhuys [EMAIL PROTECTED] Datum: woensdag, 25 oktober 2006 12:04 Onderwerp: [lazarus] usage of TTabControlStrings Hi What is the point/usage of TTabControlStrings? Why couldn't a TStrings be used to store the Tabs text? TTabControlStrings =

Re: [lazarus] pp folder in snapshot

2006-08-11 Thread vsnijders
The pp folder seems to be missing in the lazarus snapshot. I ended up using the 0.9.16 version which has the 2.0.2 fpc compiler. Is this the correct one? As written to the mailing list on 9 July, subject Directory changes in teh win32 (snapshot) installer, the snapshots have the fpc