Re: [Lazarus] New experimantal beta feature - View same source in multiple Windows

2009-11-22 Thread Mattias Gaertner
On Sun, 22 Nov 2009 01:06:48 +0100 Hans-Peter Diettrich drdiettri...@aol.com wrote: Mattias Gaertner schrieb: The unit ldockctrl is only about anchordocking. You don't need to use or alter it for your docking manager. LDockCtrl describes the interface that is nailed into the IDE units

Re: [Lazarus] Process Detection

2009-11-22 Thread theo
See: http://wiki.lazarus.freepascal.org/UniqueInstance -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

[Lazarus] Catching TForm title change

2009-11-22 Thread zeljko
Hi, Is there any way to catch when some form changed it's title text ? I want to catch such changes inside main form. Is it possible via LCL ? tnx. zeljko -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] Using latest FPC devel version with Lazarus

2009-11-22 Thread Juha Manninen
On lauantai, 21. marraskuuta 2009 23:19:38 Mattias Gaertner wrote: The fpc_svn is the the fpc source directory. It contains for example a directory 'compiler'. I made it! Lazarus accepted the source path. I tried this path also before but then FPC binaries were not properly installed and it

Re: [Lazarus] Using latest FPC devel version with Lazarus

2009-11-22 Thread Mattias Gaertner
On Sun, 22 Nov 2009 15:40:15 +0200 Juha Manninen juha.manni...@phnet.fi wrote: On lauantai, 21. marraskuuta 2009 23:19:38 Mattias Gaertner wrote: The fpc_svn is the the fpc source directory. It contains for example a directory 'compiler'. I made it! Lazarus accepted the source path. I

Re: [Lazarus] Catching TForm title change

2009-11-22 Thread Paul Ishenin
zeljko wrote: Hi, Is there any way to catch when some form changed it's title text ? I want to catch such changes inside main form. Is it possible via LCL ? you can add a message handler CM_TEXTCHANGED for your form. Best regards, Paul Ishenin. --

Re: [Lazarus] Catching TForm title change

2009-11-22 Thread zeljko
On Sunday 22 November 2009 15:12, Paul Ishenin wrote: zeljko wrote: Hi, Is there any way to catch when some form changed it's title text ? I want to catch such changes inside main form. Is it possible via LCL ? you can add a message handler CM_TEXTCHANGED for your form. tnx, but maybe

Re: [Lazarus] New experimantal beta feature - View same source in multiple Windows

2009-11-22 Thread Hans-Peter Diettrich
Mattias Gaertner schrieb: The unit ldockctrl is only about anchordocking. You don't need to use or alter it for your docking manager. LDockCtrl describes the interface that is nailed into the IDE units and methods. Which were always in IFDEF, so no one will cry if this is changed or broken.

Re: [Lazarus] Catching TForm title change

2009-11-22 Thread Hans-Peter Diettrich
zeljko schrieb: Is there any way to catch when some form changed it's title text ? I want to catch such changes inside main form. Is it possible via LCL ? You can override RealSetText in your forms, and do there whatever is required. From there you can notify your main form directly, or you

Re: [Lazarus] Catching TForm title change

2009-11-22 Thread zeljko
On Sunday 22 November 2009 15:05, Hans-Peter Diettrich wrote: zeljko schrieb: Is there any way to catch when some form changed it's title text ? I want to catch such changes inside main form. Is it possible via LCL ? You can override RealSetText in your forms, and do there whatever is

Re: [Lazarus] New experimantal beta feature - View same source in multiple Windows

2009-11-22 Thread Mattias Gaertner
On Sun, 22 Nov 2009 14:55:52 +0100 Hans-Peter Diettrich drdiettri...@aol.com wrote: Mattias Gaertner schrieb: The unit ldockctrl is only about anchordocking. You don't need to use or alter it for your docking manager. LDockCtrl describes the interface that is nailed into the IDE units

Re: [Lazarus] New experimantal beta feature - View same source in multiple Windows

2009-11-22 Thread Hans-Peter Diettrich
Mattias Gaertner schrieb: Let's first get some example running. Last time I tried it did not work. Maybe you can write a text/doc how it is supposed to work. What did you try, and what didn't work? I'm continuously updating the examples and the dock manager, according to new needs. I

[Lazarus] Loading file into TImageList does not properly scale

2009-11-22 Thread Matt Shaffer
Hello, the code below is how I load and convert PNG files into BMPs, add them to a TImageList, and then add them to a TListView. The problem I'm having is that I cannot get the little bugger to scale to 96x96; other than that the code works. I would imagine that setting the timage's stretch

Re: [Lazarus] Loading file into TImageList does not properly scale

2009-11-22 Thread Marc Weustink
Matt Shaffer wrote: Hello, the code below is how I load and convert PNG files into BMPs, add them to a TImageList, and then add them to a TListView. The problem I'm having is that I cannot get the little bugger to scale to 96x96; other than that the code works. I would imagine that setting the

Re: [Lazarus] Loading file into TImageList does not properly scale

2009-11-22 Thread Matt Shaffer
The only rectangle I found when drawing to a canvas was DrawFocusRect(Rect: TRect); Nothing to do with drawing images, I'm afraid. On Sun, Nov 22, 2009 at 5:41 PM, Marc Weustink m...@dommelstein.net wrote: Matt Shaffer wrote: Hello, the code below is how I load and convert PNG files into

Re: [Lazarus] Loading file into TImageList does not properly scale

2009-11-22 Thread waldo kitty
Matt Shaffer wrote: Hello, the code below is how I load and convert PNG files into BMPs, add them to a TImageList, and then add them to a TListView. as a relative newbie here (but not to coding in PASCAL), why do you have to convert to BMP? does the existing library (ie: LCL and FPC) code not

Re: [Lazarus] Loading file into TImageList does not properly scale

2009-11-22 Thread Matt Shaffer
as a relative newbie here (but not to coding in PASCAL), why do you have to convert to BMP? does the existing library (ie: LCL and FPC) code not accept PNG, GIF and similar for these graphic purposes? I could not find a way programatically to load an image into a TImageList from a file.

[Lazarus] gSOAP vs ws_helper.exe vs VMware

2009-11-22 Thread Michael Joyner ᏩᏯ
I have tried using the ws_helper from the web services toolkit to import the WSDL file relating to vSphere, I end up with a *.pas file that only contains nothing of note beyond initial class registration. :( I processed the same files with gSOAP and got lots of 'C' code out. Is there a set