Re: [lazarus] Turbo explorer

2006-08-08 Thread wfifi
I think it's only like VS express version.2006/8/9, Luis R. Hilario B. <[EMAIL PROTECTED]>: Hello,"CUPERTINO, Calif. — August 8, 2006 — Today, the Developer Tools Groupof Borland Software Corporation (NASDAQ: BORL) announced plans torelease single language versions of Borland Developer Studio, the

[lazarus] Turbo explorer

2006-08-08 Thread Luis R. Hilario B.
Hello, "CUPERTINO, Calif. — August 8, 2006 — Today, the Developer Tools Group of Borland Software Corporation (NASDAQ: BORL) announced plans to release single language versions of Borland Developer Studio, the company's development environment for Microsoft(r) Windows(r) and .NET applications. Br

Re: [lazarus] Bug 2011: fsStayOnTop hides modal dialogs

2006-08-08 Thread Christian Budde
Hello Mattias Can you explain, what you are trying to do? How do you want to solve the bug? I think I just solved that bug. It was quite easy, once I understand what to do and especially where to apply the change. I've included the complete patch (including the show modal patch posted earlier)

Re: [lazarus] About including ressource manager in lazarus

2006-08-08 Thread Mattias Gaertner
On Tue, 8 Aug 2006 17:07:42 -0400 "Alexandre Leclerc" <[EMAIL PROTECTED]> wrote: > As posted on another thread: > http://www.lazarus-resource.com/resource-manager.shtml > > I see that this little application is doing exactly what is missing > for an easy RAD way to configure Win32 applications. N

Re: [lazarus] Bug 2011: fsStayOnTop hides modal dialogs

2006-08-08 Thread Mattias Gaertner
On Wed, 09 Aug 2006 00:59:33 +0200 Christian Budde <[EMAIL PROTECTED]> wrote: > Forget the other post. > > Just one question can I use TWin32WidgetSet as TApplication? No. The LCL only contains only platform independent code. All platform dependent code goes to the LCL interfaces (widgetsets).

Re: [lazarus] Bug 2011: fsStayOnTop hides modal dialogs

2006-08-08 Thread Christian Budde
Forget the other post. Just one question can I use TWin32WidgetSet as TApplication? I've just started learning LCL, so sorry for some confused posts. Christian _ To unsubscribe: mail [EMAIL PROTECTED] with "u

[lazarus] Bug 2011: fsStayOnTop hides modal dialogs

2006-08-08 Thread Christian Budde
Hello everyone, after solving another problem with modal dialogs I had a look on Bug 2011 (http://www.freepascal.org/mantis/view.php?id=2011). To fix this bug it is necessary to add some system dependent Win32 code as well as some code to Application. The old window state must be saved somewh

Re: [lazarus] ANN: New MultiLog version

2006-08-08 Thread Luiz Americo Pereira Camara
Vincent Snijders escreveu: Luiz Americo Pereira Camara schreef: Vincent Snijders escreveu: Luiz Americo Pereira Camara schreef: PS: Would be fine if someone could upload those files to the Lazarus CCR. I tried to contact Vincent Snjders and Tom Lisjac but got undelivered mail response for b

[lazarus] About including ressource manager in lazarus

2006-08-08 Thread Alexandre Leclerc
As posted on another thread: http://www.lazarus-resource.com/resource-manager.shtml I see that this little application is doing exactly what is missing for an easy RAD way to configure Win32 applications. Now I know that this is not the same under all OS. But I see no major reasons not to include

Re: [lazarus] win32 program icon

2006-08-08 Thread Alexandre Leclerc
Quite a big site for laz ressources :) I'll give it a try. Thank you (and also to Ewald). 2006/8/8, Henrique P Faria <[EMAIL PROTECTED]>: You can try too this application : http://www.lazarus-resource.com/resource-manager.shtml It works with Lazarus and can add WinXP manifest resource, version

RES: [lazarus] win32 program icon

2006-08-08 Thread Henrique P Faria
You can try too this application : http://www.lazarus-resource.com/resource-manager.shtml It works with Lazarus and can add WinXP manifest resource, version and icon. If you wish to add icons in the forms you have to install the component rxnew. Henrique. -Mensagem original- De: Ewal

Re: [lazarus] ShowModal implementation (Win32)

2006-08-08 Thread Christian Budde
So, here we are! After a restart of my machine everything works fine now, Christian Index: win32object.inc === --- win32object.inc (revision 9708) +++ win32object.inc (working copy) @@ -224,8 +224,16 @@ Brings the entire a

Re: [lazarus] ShowModal implementation (Win32)

2006-08-08 Thread Darius Blaszijk
Hi Christian, Creating a patch is dead simple. It's also described here; http://wiki.lazarus.freepascal.org/index.php/Creating_A_Patch Darius - Original Message - From: "Christian Budde" <[EMAIL PROTECTED]> To: Sent: Tuesday, August 08, 2006 4:06 PM Subject: Re: [lazarus] ShowModal

[lazarus] Where can I learn more about Str() function?

2006-08-08 Thread Alexandre Leclerc
I see some fancy things about this function, but can't find documentation on it: Str(e:digits:precision, s); looks like compiler 'magic'... -- Alexandre Leclerc _ To unsubscribe: mail [EMAIL PROTECTED] with "unsub

Re: [lazarus] ShowModal implementation (Win32)

2006-08-08 Thread Bram Kuijvenhoven
Christian Budde wrote: I've found a solution, but I'm maybe too stupid to create a patch, so here is the manual patch: Fortunately creating patches isn't as hard is it might seem to be! Assuming you adapted the sources in a local checkout of the SVN repository, run (from the directory where y

Re: [lazarus] win32 program icon

2006-08-08 Thread Ewald Horn
Adding an icon turns out to involve a few steps, once. First, create a file called RESOURCES.RC that contains the following text in the first line : MainIcon ICON "myicon.ico" As long as the first entry is an icon, it will be used as the default icon for your application on Win32 platforms.

Re: [lazarus] ANN: New MultiLog version

2006-08-08 Thread Vincent Snijders
Luiz Americo Pereira Camara schreef: Vincent Snijders escreveu: Luiz Americo Pereira Camara schreef: PS: Would be fine if someone could upload those files to the Lazarus CCR. I tried to contact Vincent Snjders and Tom Lisjac but got undelivered mail response for both I uploaded multilog 0.

Re: [lazarus] ShowModal implementation (Win32)

2006-08-08 Thread Christian Budde
Hello again, I've found a solution, but I'm maybe too stupid to create a patch, so here is the manual patch: To have a ShowModal more similar to Delphi, simply change the HandleCursor procedure in 'win32callback.inc' to this:   procedure HandleSetCursor;   var     lControl: TControl;     Bou

Re: [lazarus] win32 program icon

2006-08-08 Thread Alexandre Leclerc
2006/1/19, Vincent Snijders <[EMAIL PROTECTED]>: Graeme Geldenhuys wrote: > Hi, > > For the life of me, I cannot find any information on how to add a main > program icon to a app compiled in Lazarus. Can or must it really be > this difficult? Can we have a option in the Project Options to selec