[lazarus] TApplication.Terminate

2006-06-08 Thread Bogusław Brandys
Hello, I sometimes use Application.Terminate under Windows and Lazarus.No problem so far. However last day I tested it under Linux (with official rpm 0.9.16 with fpc 2.0.2) and it caused a lot of errors and runtime error 217. Is it something that is fixed in SVN version ? Regards Boguslaw

Re: [lazarus] TApplication.Terminate

2005-10-27 Thread Mattias Gaertner
On Tue, 25 Oct 2005 21:00:52 +0200 (CEST) Michael Van Canneyt <[EMAIL PROTECTED]> wrote: > > > On Tue, 25 Oct 2005, Alain Michaud wrote: > > > Hi, > > > > I had the same problem a while ago. There were some discussions on > > this list and this seems to be a "deep" bug. > > There is no bug

Re: [lazarus] TApplication.Terminate

2005-10-25 Thread Michael . VanCanneyt
On Tue, 25 Oct 2005, A.J. Venter wrote: > On Tuesday 25 October 2005 17:42, Alain Michaud wrote: > > Hi, > > > > I had the same problem a while ago. There were some discussions on > > this list and this seems to be a "deep" bug. > > > > In my case, I noticed that any timer runing would not sto

Re: [lazarus] TApplication.Terminate

2005-10-25 Thread Michael Van Canneyt
On Tue, 25 Oct 2005, Alain Michaud wrote: > Hi, > > I had the same problem a while ago. There were some discussions on > this list and this seems to be a "deep" bug. There is no bug. Terminate should simply stop the message loop. After that, TApplication stops executing, frees itself, and

Re: [lazarus] TApplication.Terminate

2005-10-25 Thread Michael Van Canneyt
On Tue, 25 Oct 2005, Alexander Todorov wrote: > Hi all, > I've been porting from Delphi for some time and noticed that > TApplication.Terminate doesn't behave in the same manner. As the > comment in the source say : > --

Re: [lazarus] TApplication.Terminate

2005-10-25 Thread Alexander Todorov
I know kill will work but that's a dirty solution. And it doesn't work on Windows (in fact there should be some api call to do the same :) ) Halt seems more clear. I will try to make a good example app and send a bug report. Maybe some common solution should be added to the Wiki. Thanks all. ___

Re: [lazarus] TApplication.Terminate

2005-10-25 Thread Vincent Snijders
A.J. Venter wrote: On Tuesday 25 October 2005 17:42, Alain Michaud wrote: Hi, I had the same problem a while ago. There were some discussions on this list and this seems to be a "deep" bug. In my case, I noticed that any timer runing would not stop. Finally I found the "ultimate weapon": I

Re: [lazarus] TApplication.Terminate

2005-10-25 Thread A.J. Venter
On Tuesday 25 October 2005 17:42, Alain Michaud wrote: > Hi, > > I had the same problem a while ago. There were some discussions on > this list and this seems to be a "deep" bug. > > In my case, I noticed that any timer runing would not stop. > > Finally I found the "ultimate weapon": I send the

Re: [lazarus] TApplication.Terminate

2005-10-25 Thread Alain Michaud
Hi, I had the same problem a while ago. There were some discussions on this list and this seems to be a "deep" bug. In my case, I noticed that any timer runing would not stop. Finally I found the "ultimate weapon": I send the "kill" command to the shell. 1 -find the PID of your program 2

[lazarus] TApplication.Terminate

2005-10-25 Thread Alexander Todorov
Hi all, I've been porting from Delphi for some time and noticed that TApplication.Terminate doesn't behave in the same manner. As the comment in the source say : - TApplication Terminate Class