[Lazarus] .OnEditingDone event

2014-12-15 Thread Chris Crori
Hi! I tried to use .OnEditingDone event on TEdit and found out that it is called like .OnExit, even if there was no change. Is this by design? I thought that to trigger a .OnEditingDone event, there shoud be a *beginning* in editing. eg : A Form with 2 edits, clicking each one, makes the

Re: [Lazarus] TFMTBCDField problem

2014-10-27 Thread Chris Crori
Hi Vincent, can you help me build lazarus with fpc 2.7.1? I downloaded fpc trunk, changed the file folders, undated the lazarus configuration, but I cannot build fpc and lazarus tells me it can’t find fpc.cfg file... the file exists! I took a look to the changes in variants.pp and I

[Lazarus] NewEditButton define

2014-10-13 Thread Chris Crori
Hi guys, I was trying the NewEditButton define to fix some alignment problems I had with TDateEdit and came I have a strange problem with the new component. It seems that in some (not all) forms, the button does not draw correctly. I was trying to understand in witch so I could make a bug

[Lazarus] map file check

2014-06-24 Thread Chris Crori
Hi guys, I was browsing my project’s map file and came across something that I found odd. There are several files that the linker is not removing although they have 0 references on them. This is a part of my map file “ Keeping

Re: [Lazarus] Open file dialog speed

2014-05-28 Thread Chris Crori
From: Martin Frb Sent: Wednesday, May 28, 2014 3:31 AM To: Lazarus mailing list Subject: Re: [Lazarus] Open file dialog speed On 27/05/2014 18:15, Chris Crori wrote: Hi guys, Is there anything I can do to speed up the TOpenDialog window in windows? It takes more than 2

[Lazarus] Open file dialog speed

2014-05-27 Thread Chris Crori
Hi guys, Is there anything I can do to speed up the TOpenDialog window in windows? It takes more than 2 seconds in my application in Lazarus, a lot more than in any application I run on the same computer (Windows7, 32 bit) Regards, Chris-- ___

Re: [Lazarus] Scrolling text

2014-05-23 Thread Chris Crori
I use a stringgrid with the right properties set, you have no lines, no header, you can set the size easily to as much as you like. the only “trick” you have to use is that you always have to insert to the first line and not the last ;) Regards, Chris From: Daniel Erles Sent: Friday, May 23,

[Lazarus] GetFormImage bug

2014-05-13 Thread Chris Crori
Hi guys, I am not very sure on how I can describe this... I have a thumbnail section in my main program form. In the forms, I use GetFormImage to make an image and send it to the mainform. The bug is that some components are not visible in this image. TDBGrid is one and a custom component

Re: [Lazarus] GetFormImage bug

2014-05-13 Thread Chris Crori
:) From: Howard Page-Clark Sent: Tuesday, May 13, 2014 7:44 PM To: lazarus@lists.lazarus.freepascal.org Subject: Re: [Lazarus] GetFormImage bug On 13/05/2014 16:49, Chris Crori wrote: I have a thumbnail section in my main program form. In the forms, I use GetFormImage to make an image and send

Re: [Lazarus] Lazarus 1.2.2 Release

2014-04-23 Thread Chris Crori
Great job guys! :) From: Mattias Gaertner Sent: Wednesday, April 23, 2014 5:34 PM To: lazarus@lists.lazarus.freepascal.org Subject: [Lazarus] Lazarus 1.2.2 Release The Lazarus team is glad to announce the release of Lazarus 1.2.2. This release was built with fpc 2.6.4. The previous release 1.2

[Lazarus] Order in .lfm file

2014-04-22 Thread Chris Crori
Hi guys, As a silly perfectionist, I spend a lot of time changing the order the components are written in the .lfm file, making the groups I have in my mind, visible in the object inspector. Is there a way to do that visually? Regards, Chris-- ___

[Lazarus] FreePascal 2.6.4

2014-04-09 Thread Chris Crori
Hi all, are there any plans / ETA for a Lazarus biuld with FreePascal 2.6.4 ?-- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

[Lazarus] bug tracker

2014-04-08 Thread Chris Crori
Hi guys, Can someone help me step by step on how to upload a patch to the bugtracker? It’s a small patch with a bugfix and i like to start contributing but i m not familiar with community tools yet ChriswlEmoticon-smile[1].png-- ___ Lazarus

Re: [Lazarus] bug tracker

2014-04-08 Thread Chris Crori
To: Lazarus mailing list Subject: Re: [Lazarus] bug tracker On 08/04/2014 09:13, Chris Crori wrote: Can someone help me step by step on how to upload a patch to the bugtracker? It’s a small patch with a bugfix and i like to start contributing but i m not familiar with community tools yet Γελαστούλης

Re: [Lazarus] bug tracker

2014-04-08 Thread Chris Crori
On 08/04/2014 13:24, Chris Crori wrote: Creating the patch is my main consern... i m getting the trunc version now and i ll try tortoisesvn's way Ok. Please feel free to post if you hit problems. I'd suggest including the command line tools with your tortoisesvn install so that you can run

Re: [Lazarus] bug tracker

2014-04-08 Thread Chris Crori
On 08/04/2014 14:35, Chris Crori wrote: On 08/04/2014 13:24, Chris Crori wrote: I think i made a mistake and the bug was assigned to someone... You mean bug 25987? No - as it's an FPC database bug it gets automatically assigned to Joost van der Sluis (addmittedly this shows up a bit weird

Re: [Lazarus] Prevent visual updates

2014-04-01 Thread Chris Crori
] Prevent visual updates On Sun, 30 Mar 2014 23:11:41 +0300 Chris Crori cror...@yahoo.com wrote: Doublebuffered did not solve my problem i have a panel that i make visible depending on a flag. in a unique situation, this flag must change 2 times, so it's my bad, not the LCL's if i could disable

Re: [Lazarus] Prevent visual updates

2014-04-01 Thread Chris Crori
20:43, Chris Crori wrote: That is a great idea Mattias! a timer with 1 as interval is fast enough for responce application and slow enough to avoid flickering Another very good way to do this, is using Application.QueueAsync -- ___ Lazarus mailing list

Re: [Lazarus] Prevent visual updates

2014-04-01 Thread Chris Crori
QueueAsync works great! Martin you rock! ;) -Αρχικό μήνυμα- From: Chris Crori Sent: Wednesday, April 02, 2014 1:07 AM To: Lazarus mailing list Subject: Re: [Lazarus] Prevent visual updates QueueAsync. Thread safe and multiplatform... I will look into that Martin, seems like a solution

[Lazarus] Prevent visual updates

2014-03-30 Thread Chris Crori
Hi gyus, is there a way to prevent LCL (visual) updates for a short period? i am thinking of something like BeginUpdate/EndUpade in Grids, so i can make some changes drasticaly and avoid the flickering effect Chris-- ___ Lazarus mailing list

Re: [Lazarus] Prevent visual updates

2014-03-30 Thread Chris Crori
Doublebuffered did not solve my problem i have a panel that i make visible depending on a flag. in a unique situation, this flag must change 2 times, so it's my bad, not the LCL's if i could disable the LCL messages in that unique situation, it would be very helpfull, but if i can't do that, i

Re: [Lazarus] Some articles on Lazarus/Free Pascal.

2014-03-29 Thread Chris Crori
Looks very interestging! :) -Αρχικό μήνυμα- From: Michael Van Canneyt Sent: Saturday, March 29, 2014 5:52 PM To: Lazarus mailing list ; FPC mailing list Subject: [Lazarus] Some articles on Lazarus/Free Pascal. Hello, Since many years I have been writing articles about Object Pascal

[Lazarus] SQLQuery

2014-03-27 Thread Chris Crori
Hi guys, i use a SQLQuery in a project to connect to a Firebird database. In my table i use a BEFORE INSERT trigger for my primary ID field. In the same transaction i have to insert a detail row in another column. How can i find out the ID result after post but before commit? ps : i tried

Re: [Lazarus] SQLQuery

2014-03-27 Thread Chris Crori
On Thu, 27 Mar 2014, Chris Crori wrote: Hi guys, i use a SQLQuery in a project to connect to a Firebird database. In my table i use a BEFORE INSERT trigger for my primary ID field. In the same transaction i have to insert a detail row in another column. How can i find out the ID result

Re: [Lazarus] SQLQuery

2014-03-27 Thread Chris Crori
Done! I used the second query method on the beforepost event and it works fine I would like to try expanding the TSQLQuery to be able to use generator fields, can someone help me send the patch after? Thank you Michael for your help -Αρχικό μήνυμα- From: Chris Crori Sent: Thursday

Re: [Lazarus] OT: Happy new year!

2014-01-01 Thread Chris Crori
Happy 2014 everyone!I wish for good health, prosperity and happiness to everyone! :)-- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

[Lazarus] DCPcrypt on Lazarus 1.2

2013-12-27 Thread Chris Crori
Hi gyus, i use DCPcrypt in my project and found out that the rijndael cipher gives different results in Lazarus 1.2 than the results i got in Lazarus 1.0 truth is that i didn't have any time to examine and maybe i won't in the next few days so if anyone wants to look into it before the

Re: [Lazarus] DCPcrypt on Lazarus 1.2

2013-12-27 Thread Chris Crori
On Fri, 27 Dec 2013 15:35:12 +0200, Mark Morgan Lloyd markmll.laza...@telemetry.co.uk wrote: Graeme Geldenhuys wrote: On 2013-12-27 09:45, Chris Crori wrote: i use DCPcrypt in my project and found out that the rijndael cipher gives different results in Lazarus 1.2 than the results i

[Lazarus] Lookup field

2013-10-13 Thread Chris Crori
Hi guys! i am trying to make a lookup field and i found that i can't use a dataset that's not on the same form/datamodule. is there a way to bypass this? Regards Chris -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] Packages

2013-09-22 Thread Chris Crori
On Sat, 21 Sep 2013 20:10:02 +0300, Chris Crori cror...@yahoo.com wrote: Hi all, is there a $ComponentName directive that i can put in unit output directory in my packages? Thanks -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

[Lazarus] Packages

2013-09-21 Thread Chris Crori
Hi all, is there a $ComponentName directive that i can put in unit output directory in my packages? Thanks -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

[Lazarus] TSQLTransaction.Action property not implemented

2013-08-07 Thread Chris Crori
Hi guys, i was under the impression that the “Action” property had a value in TSQLTransaction component... correct me if i am wrong but in testing i did and in code (sqldb.pp) i saw that it doesn’t matter the value i put in the property, the default action when a transaction closes is

Re: [Lazarus] TSQLTransaction.Action property not implemented

2013-08-07 Thread Chris Crori
myself? -Αρχικό μήνυμα- From: Michael Van Canneyt Sent: Wednesday, August 07, 2013 11:49 AM To: Lazarus mailing list Subject: Re: [Lazarus] TSQLTransaction.Action property not implemented On Wed, 7 Aug 2013, Chris Crori wrote: Hi guys, i was under the impression that the “Action

Re: [Lazarus] TSQLTransaction.Action property not implemented

2013-08-07 Thread Chris Crori
not implemented On Wed, 7 Aug 2013, Chris Crori wrote: Thanks! :) I just reinstalled my Operating systems so i haven't looked up the trunk for a while, i guess i have to!!! :P The main idea is to build a form that autosaves any changes, so i have to explicitly call just rollback uppon

Re: [Lazarus] TButton, wordwrap

2013-07-05 Thread Chris Crori
+0300 Chris Crori wrote: Hi gyus, can somebody point me to how can i make a TButton’s caption WordWraped? That is not possible x-platform. I would prefer to do have this, but if it is not posible, is there a component that is most used in this case? I don't know any. MattiasInstead

[Lazarus] TButton, wordwrap

2013-07-04 Thread Chris Crori
Hi gyus, can somebody point me to how can i make a TButton’s caption WordWraped? I would prefer to do have this, but if it is not posible, is there a component that is most used in this case? regards, Chris-- ___ Lazarus mailing list