Re: [lazarus] Bugs ? Startlazarus increases link times

2005-08-30 Thread A.J. Venter
Right, I can't be certain the drive is fine of course, but it is brand new - I've have this laptop less than a month. It isn't a great work horse but it's all I got until my desktop CPU comes back from repairs. That said, dmesg and messages are both empty, and it does finish, machine has

Re: [lazarus] making WIN32 DLL ?

2005-08-30 Thread Michael Van Canneyt
On Tue, 30 Aug 2005, Tony Pelton wrote: hi all, interestingly, with what i _think_ is the same basic set of compiler flags for debug and optimizations etc ... the DLL from lazarus comes out about 4x as large. First off, try to look at the uses clause of your main source file. if it

[lazarus] Esthetics Windows Patch

2005-08-30 Thread Christian Fillion
Hi, a made a esthetics patch that set the borderStyle propertie to bsSizeToolWin For the Code Explorer , The Object Inspector and the Message windows It's a simple hack that give better looking windows and i tested it for the win32 platform Second i wanna know what the docking system miss in

Re: [lazarus] Lazarus / C++ Application Released

2005-08-30 Thread Razvan Adrian Bogdan
On 8/29/05, Chris Gordon-Smith [EMAIL PROTECTED] wrote: Hullo All This is to announce the release of version 0.2 of my SimSoup Artificial Chemistry simulator program. As far as I am aware, this is the first program that combines use of the Lazarus Component Library (LCL) for the

Re: [lazarus] Lazarus / C++ Application Released

2005-08-30 Thread Razvan Adrian Bogdan
On 8/30/05, Razvan Adrian Bogdan [EMAIL PROTECTED] wrote: On 8/29/05, Chris Gordon-Smith [EMAIL PROTECTED] wrote: Hullo All This is to announce the release of version 0.2 of my SimSoup Artificial Chemistry simulator program. As far as I am aware, this is the first program that

Re: [lazarus] Simple IPC implementation.

2005-08-30 Thread Vincent Snijders
Marc Weustink wrote: Vincent Snijders wrote: Micha Nelissen wrote: On Tue, 30 Aug 2005 11:09:30 +0200 (Romance Daylight Time) Michael Van Canneyt [EMAIL PROTECTED] wrote: In windows, it's slightly more difficult (surprise, surprise :-) ) You can use MsgWaitForMultipleObjects to do this

Re: [lazarus] Simple IPC implementation.

2005-08-30 Thread Michael Van Canneyt
On Tue, 30 Aug 2005, Micha Nelissen wrote: On Tue, 30 Aug 2005 11:09:30 +0200 (Romance Daylight Time) Michael Van Canneyt [EMAIL PROTECTED] wrote: On Tue, 30 Aug 2005, Micha Nelissen wrote: What do you mean with Idle handler? TApplication.OnIdle ? In any sane app, that is only

Re: [lazarus] Simple IPC implementation.

2005-08-30 Thread Vincent Snijders
Micha Nelissen wrote: On Tue, 30 Aug 2005 11:09:30 +0200 (Romance Daylight Time) Michael Van Canneyt [EMAIL PROTECTED] wrote: In windows, it's slightly more difficult (surprise, surprise :-) ) You can use MsgWaitForMultipleObjects to do this for a windows handle, or use WaitForSingleObject on

Re: [lazarus] Simple IPC implementation.

2005-08-30 Thread Michael Van Canneyt
On Tue, 30 Aug 2005, Vincent Snijders wrote: Micha Nelissen wrote: On Tue, 30 Aug 2005 11:09:30 +0200 (Romance Daylight Time) Michael Van Canneyt [EMAIL PROTECTED] wrote: In windows, it's slightly more difficult (surprise, surprise :-) ) You can use MsgWaitForMultipleObjects to do

Re: [lazarus] Simple IPC implementation.

2005-08-30 Thread Micha Nelissen
On Tue, 30 Aug 2005 12:20:40 +0200 (Romance Daylight Time) Michael Van Canneyt [EMAIL PROTECTED] wrote: You can wait on any handle: file, pipe, socket. From msdn: The WaitForSingleObject function can wait for the following objects: * Change notification * Console input *

Re: [lazarus] Localize.bat

2005-08-30 Thread Razvan Adrian Bogdan
On 8/29/05, Vincent Snijders [EMAIL PROTECTED] wrote: Razvan Adrian Bogdan wrote: I have made a script for windows similar to localize.sh, i thought some other translators might want it, it does the same thing as the linux version. Please rename the attached file (funy mail protections).

Re: [lazarus] Simple IPC implementation.

2005-08-30 Thread Micha Nelissen
On Tue, 30 Aug 2005 11:09:30 +0200 (Romance Daylight Time) Michael Van Canneyt [EMAIL PROTECTED] wrote: On Tue, 30 Aug 2005, Micha Nelissen wrote: What do you mean with Idle handler? TApplication.OnIdle ? In any sane app, that is only called once when the user goes idle; after that, the

Re: [lazarus] Simple IPC implementation.

2005-08-30 Thread Florian Klaempfl
Vincent Snijders wrote: And how are you doing that? In lazarus the following code is used (more or less): repeat Windows.PeekNamedPipe(PipeHnd, nil, 0, nil, @TotalBytesAvailable, nil); if TotalBytesAvailable0 then break; Application.ProcessMessages Sleep(10); until false;

Re: [lazarus] Simple IPC implementation.

2005-08-30 Thread Florian Klaempfl
Micha Nelissen wrote: On Tue, 30 Aug 2005 12:23:06 +0200 (Romance Daylight Time) Michael Van Canneyt [EMAIL PROTECTED] wrote: Things you could use this function for: file change notifications, events, ... all have to be seperately implemented in the FCL/LCL to make them work universally and

Re: [lazarus] Simple IPC implementation.

2005-08-30 Thread Marc Weustink
Vincent Snijders wrote: Marc Weustink wrote: Vincent Snijders wrote: Micha Nelissen wrote: On Tue, 30 Aug 2005 11:09:30 +0200 (Romance Daylight Time) Michael Van Canneyt [EMAIL PROTECTED] wrote: In windows, it's slightly more difficult (surprise, surprise :-) ) You can use

Re: [lazarus] Simple IPC implementation.

2005-08-30 Thread Michael Van Canneyt
On Tue, 30 Aug 2005, Micha Nelissen wrote: On Tue, 30 Aug 2005 12:20:40 +0200 (Romance Daylight Time) Michael Van Canneyt [EMAIL PROTECTED] wrote: You can wait on any handle: file, pipe, socket. From msdn: The WaitForSingleObject function can wait for the following objects:

Re: [lazarus] Simple IPC implementation.

2005-08-30 Thread Michael Van Canneyt
On Tue, 30 Aug 2005, Vincent Snijders wrote: Michael Van Canneyt wrote: On Tue, 30 Aug 2005, Vincent Snijders wrote: Micha Nelissen wrote: On Tue, 30 Aug 2005 11:09:30 +0200 (Romance Daylight Time) Michael Van Canneyt [EMAIL PROTECTED] wrote: In windows, it's slightly more

Re: [lazarus] Simple IPC implementation.

2005-08-30 Thread Michael Van Canneyt
On Tue, 30 Aug 2005, Micha Nelissen wrote: On Tue, 30 Aug 2005 12:23:06 +0200 (Romance Daylight Time) Michael Van Canneyt [EMAIL PROTECTED] wrote: Things you could use this function for: file change notifications, events, ... all have to be seperately implemented in the FCL/LCL to make

Re: [lazarus] making WIN32 DLL ?

2005-08-30 Thread Micha Nelissen
On Tue, 30 Aug 2005 10:18:41 -0400 Tony Pelton [EMAIL PROTECTED] wrote: the message produced by the flight simulator lists a missing DLL as one of the possible reasons for not being able to load the DLL, along with the it isn't a DLL reason. thanks for any help. Have you tried opening the

Re: [lazarus] making WIN32 DLL ?

2005-08-30 Thread Micha Nelissen
On Tue, 30 Aug 2005 10:52:05 -0400 Tony Pelton [EMAIL PROTECTED] wrote: On 8/30/05, Micha Nelissen [EMAIL PROTECTED] wrote: On Tue, 30 Aug 2005 10:18:41 -0400 Tony Pelton [EMAIL PROTECTED] wrote: Have you tried opening the DLL in Dependency Walker or some alike tool ? did you mean

Re: [lazarus] making WIN32 DLL ?

2005-08-30 Thread Tony Pelton
On 8/30/05, Florian Klaempfl [EMAIL PROTECTED] wrote: Tony Pelton wrote: Using FP makes me suicidal. Strange, almost the whole compiler is developed using fp :) hi florian, first, thanks for the response and all of the great work on free pascal. as to my comment about being suicidal

Re: [lazarus] Bugs ? Startlazarus increases link times

2005-08-30 Thread L505
Tested linking times (not including compiling time) Lazarus: - lazarus.new.exe 2 minutes : 37 seconds StartLazarus - lazarus.new.exe 2 minutes : 54 seconds Celeron 400mhz, 327MB RAM, Windows 2000 Lazarus Version: 0.9.7 RB Alpha LD.exe version: not sure, it is

Re: [lazarus] Bugs ? Startlazarus increases link times

2005-08-30 Thread A.J. Venter
Ok some stats from my setup then: Lazarus version: Subversion checkout on saturday (same happened with 0.9.8 however) CPU: AMD Sempron 2800+ CPU Mhz: 1600 Acer Aspire 3000 ld version - from binutils 2.15.92.0.2 *cast confusion. on . A.J. On Tuesday 30 August 2005 20:01, L505 wrote: Tested

Re: [lazarus] making WIN32 DLL ?

2005-08-30 Thread L505
It whould be, but I think not a lot of people have tried to do this yet. (Me neither, btw). What commandline options does FP hand to fpc to compile it, and what is the difference to the commandline lazarus generates ? fp has a compiled in compiler. I noticed this, because whenever I

Re: [lazarus] making WIN32 DLL ?

2005-08-30 Thread L505
They can. Only real DOS apps cannot. On windows a console app can be a real Win32 app, and can hence load libraries. Dos apps running in a Command-line windows usually cannot load libraries. Michael. thx. And I just assume linux/unix has had DSO's for a long long time in command line

Re: [lazarus] Bugs ? Startlazarus increases link times

2005-08-30 Thread Darius Blaszijk
Anyone know how can I find out my LD version if I just have the executable handy? I don't see it in the |properties|summary|version| ld --version _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as

Re: [lazarus] Bugs ? Startlazarus increases link times

2005-08-30 Thread Andrew Haines
L505 wrote: ld version - from binutils 2.15.92.0.2 *cast confusion. on . A.J. Anyone know how can I find out my LD version if I just have the executable handy? I don't see it in the |properties|summary|version| _

Re: [lazarus] Lazarus / C++ Application Released

2005-08-30 Thread Chris Gordon-Smith
On Tuesday 30 August 2005 10:10, Razvan Adrian Bogdan wrote: On 8/30/05, Razvan Adrian Bogdan [EMAIL PROTECTED] wrote: On 8/29/05, Chris Gordon-Smith [EMAIL PROTECTED] wrote: Hullo All This is to announce the release of version 0.2 of my SimSoup Artificial Chemistry simulator

[lazarus] Looks like GMane news relay is on line again

2005-08-30 Thread Bo Berglund
After they resubscribed to the lazarus list the newsgroup at gmane for lazarus seems to be working again. I am posting this in order to verify that it passes through. The server is: news.gmane.org and the NG is: gmane.comp.ide.lazarus.general /Bo Bo Berglund

Re: [lazarus] SVN Updates Initial LCL - Carbon interface

2005-08-30 Thread Marc Weustink
Marc Weustink wrote: Hi r7586: I'm proud to announce the initial steps of the carbon interface. The Hello world example compiles and runs (*). The interface is far form complete, on basic Form and Button support is available. Now with screenshot:

RE: [lazarus] Application crash

2005-08-30 Thread Bjørn T. Jønsson
Vincent Snijders wrote: What about using the gdb that comes with lazarus (on windows)? See for the path: Environment, Debugger Options, General Tab. The default is: c:\lazarus\mingw\bin\gdb.exe Thanks! I didn't know about that. You saved me from lots of fumbling there. :) I guess the Wiki

RE: [lazarus] Application crash

2005-08-30 Thread Bjørn T. Jønsson
Vincent Snijders wrote: Try creating a back trace, it gives us some information where it went wrong OK, here's the output: Starting program: D:\My Documents\$Project\!willy/willy.exe Program received signal SIGSEGV, Segmentation fault. 0x7c918fea in ntdll!RtlpWaitForCriticalSection ()

RE: [lazarus] Application crash

2005-08-30 Thread Bjørn T. Jønsson
Hmmm... I'm wondering if it's a path issue? Maybe related to long paths, paths on other disks than Lazarus, or similar. See also this: http://www.lazarus.freepascal.org/mantis/view.php?id=900 - Bjørn. --- _ To unsubscribe:

Re: [lazarus] Application crash

2005-08-30 Thread Felipe Monteiro de Carvalho
Try installing lazarus on a directory that does not have spaces on it's name (the best is a short directory name). I would say this is a bug with long file names on the interface. Don't worry. Programs produced by lazarus do not have this bug ;-) -- Felipe Monteiro de Carvalho

RE: [lazarus] Application crash

2005-08-30 Thread Bjørn T. Jønsson
Felipe Monteiro de Carvalho wrote: Try installing lazarus on a directory that does not have spaces on it's name (the best is a short directory name). I would say this is a bug with long file names on the interface. I did. It's installed in c:\lazarus\ Only my project is located elsewhere.