Re: [Lazarus] Remote debugger looses connection to target on Windows 7

2014-04-11 Thread Michael Schnell
On 04/10/2014 07:33 PM, Martin Frb wrote: Look at the log, if you see the -exec-... and the work then all is ok. I have the ARM machine in question (a topless QNAP NAS) at home and will try to make sense of this during the weekend. BTW.: In fact the helpful person from Austria did start to

Re: [Lazarus] Remote debugger looses connection to target on Windows 7

2014-04-11 Thread Michael Schnell
On 04/10/2014 05:30 PM, Martin Frb wrote: So I will not add those gdb/gdbserver myself. I do not know, if anyone else wants to work on that. I did try (see the other mail). Also which installer should they be added to? I suppose you mean installer for Lazarus ? The only installer which does

Re: [Lazarus] Ann: TButtonEdit as replacement for TEditButton

2014-04-11 Thread FreeMan
Thank you Bart, All voids goes to Bart at this time :) I tested, kubuntu 13.10 x64. if different color is clDefault (TEditButton.ColorclDefault), write it in lfm, if its equal to clDefault, not in lfm, but property value is clDefault ( if some one looking for in lfm file, can not see Color =

[Lazarus] Funny bug

2014-04-11 Thread Michael Van Canneyt
Hi, Just encountered this rather nice bug: Debugging a project in Lazarus, linux. I have in Run Parameters Command-line parameters: https://www.google.be/ out I copy all sources to windows, open the project start debugging. And get an error. Wondering what it is, I see that the command-line

Re: [Lazarus] Funny bug

2014-04-11 Thread zeljko
On 04/11/2014 10:45 AM, Michael Van Canneyt wrote: Hi, Just encountered this rather nice bug: Debugging a project in Lazarus, linux. I have in Run Parameters Command-line parameters: https://www.google.be/ out I copy all sources to windows, open the project start debugging. And get an

Re: [Lazarus] Remote debugger looses connection to target on Windows 7

2014-04-11 Thread Martin Frb
On 11/04/2014 08:08, Michael Schnell wrote: On 04/10/2014 05:30 PM, Martin Frb wrote: So I will not add those gdb/gdbserver myself. I do not know, if anyone else wants to work on that. I did try (see the other mail). Also which installer should they be added to? I suppose you mean

Re: [Lazarus] Funny bug

2014-04-11 Thread Mattias Gaertner
On Fri, 11 Apr 2014 10:45:12 +0200 (CEST) Michael Van Canneyt mich...@freepascal.org wrote: Hi, Just encountered this rather nice bug: Debugging a project in Lazarus, linux. I have in Run Parameters Command-line parameters: https://www.google.be/ out I copy all sources to windows,

Re: [Lazarus] Funny bug

2014-04-11 Thread Mark Morgan Lloyd
zeljko wrote: Command-line parameters: https:\\www.google.be\ out Which is of course wrong... I understand where it comes from, but do suggest to leave the entry in this box alone... Or at least recognize https: and don't touch. I think that might be a plausible rule for all places where

[Lazarus] https support; call for testers

2014-04-11 Thread Michael Van Canneyt
Hello, I've just committed support for SSL in the ssockets unit of FPC. I also made the OpenSSL unit more thread-safe. One consequence of this is that the fphttpclient unit now has support for the https:// protocol. I have tested on windows and unix, the support for client-side SSL support

Re: [Lazarus] Funny bug

2014-04-11 Thread Michael Van Canneyt
On Fri, 11 Apr 2014, zeljko wrote: On 04/11/2014 10:45 AM, Michael Van Canneyt wrote: Hi, Just encountered this rather nice bug: Debugging a project in Lazarus, linux. I have in Run Parameters Command-line parameters: https://www.google.be/ out I copy all sources to windows, open the

Re: [Lazarus] Remote debugger looses connection to target on Windows 7

2014-04-11 Thread Bernd Mueller
Martin Frb wrote: There are several possibilities, that I can think off: 1) some setting the IDE uses. - Gather all the set foo= commands that the IDE sends, and see if applying them to your manual driven gdb session makes a different. - Run your manual gdb with gdb.exe -i mi to enable mi

Re: [Lazarus] Funny bug

2014-04-11 Thread Kostas Michalopoulos
Better not tou On Fri, Apr 11, 2014 at 1:19 PM, zeljko zel...@holobit.net wrote: Or at least recognize https: and don't touch. Better not touch it at all. What if i use /blah for a parameter switch? -- ___ Lazarus mailing list

Re: [Lazarus] Remote debugger looses connection to target on Windows 7

2014-04-11 Thread Martin Frb
On 11/04/2014 15:08, Bernd Mueller wrote: Martin Frb wrote: There are several possibilities, that I can think off: 1) some setting the IDE uses. - Gather all the set foo= commands that the IDE sends, and see if applying them to your manual driven gdb session makes a different. - Run your

[Lazarus] Scroll Wheel

2014-04-11 Thread Timothy Groves
I have several TEdit objects in my form, and because they handle only integer data, I'd like to use my scroll wheel to edit their values. However, there is no OnScrollWheel event that I can see. Since scroll wheels are passed as mouse clicks, I thought to examine the OnMouseDown/OnMouseUp

Re: [Lazarus] Scroll Wheel

2014-04-11 Thread Mattias Gaertner
On Fri, 11 Apr 2014 13:45:41 -0400 Timothy Groves the.tail.kin...@gmail.com wrote: I have several TEdit objects in my form, and because they handle only integer data, I'd like to use my scroll wheel to edit their values. However, there is no OnScrollWheel event that I can see. Since

Re: [Lazarus] Scroll Wheel

2014-04-11 Thread Timothy Groves
No; I am unsure as to how to do that. Would I need to create a descendant class, or does Lazarus support overriding without doing so? Chess is an exciting game, when played with shotguns. --MegaHAL On Apr 11, 2014 1:59 PM, Mattias Gaertner nc-gaert...@netcologne.de wrote: On Fri, 11 Apr 2014

Re: [Lazarus] Scroll Wheel

2014-04-11 Thread Chris Kelling
I did a search on mouse wheel event delphi - I came up with a lot of articles, most mentioning OnMessage event. Then there was this article, which I've not read all the way, but you may find useful. I'm not sure if this was ported to Lazarus, but I've found referencing Delphi does garner

Re: [Lazarus] Funny bug

2014-04-11 Thread Martin Frb
On 11/04/2014 13:03, Mattias Gaertner wrote: Under Linux '\' are converted when running with the gdb debugger. It does not happen when running with the 'none' debugger. Maybe this gives Martin an idea. Confirmed, or rather, they are in most cases dropped. That is a different issue though.

Re: [Lazarus] Scroll Wheel

2014-04-11 Thread Howard Page-Clark
On 11/04/2014 19:33, Timothy Groves wrote: No; I am unsure as to how to do that. Would I need to create a descendant class, or does Lazarus support overriding without doing so? The following should give you an idea how to develop the hint Mattias gave: ===code=== unit testIntWheelEdit;

Re: [Lazarus] https support; call for testers

2014-04-11 Thread Graeme Geldenhuys
On 2014-04-11 14:00, Michael Van Canneyt wrote: That this support is released around the same time as the heartbleed leak issue, is entirely coincidental and definitely not intended. :-) It's called perfect timing. Regards, - Graeme - -- fpGUI Toolkit - a cross-platform GUI toolkit