Re: [Lazarus] Compiler errors

2017-05-13 Thread Steve Gatenby via Lazarus
(hints, warnings, errors, etc.). Check the -v (verbosity) option in your fpc.cfg (or .fpc.cfg on Linux) and your Project/Compiler options (Verbosity of course) in the IDE. 2017-05-12 21:52 keltezéssel, Steve Gatenby via Lazarus írta: On 05/12/2017 10:20 PM, Péter Gábor via Lazarus wrote: Take

Re: [Lazarus] Compiler errors

2017-05-12 Thread Steve Gatenby via Lazarus
7-05-12 11:30 keltezéssel, Steve Gatenby via Lazarus írta: I am compiling my project in i386 mode (on an x64 system) I receive the following error (abridged) related to cross compiling as works ok as 64bit compile Compile Project, Mode: Lin-Intel-32, CPU: i386, Target: LxAazLMA: Exit code 256,

Re: [Lazarus] AsyncProcess code problem

2017-06-09 Thread Steve Gatenby via Lazarus
On 06/09/2017 05:32 PM, Mattias Gaertner via Lazarus wrote: On Fri, 9 Jun 2017 17:08:25 +0930 Steve Gatenby via Lazarus <lazarus@lists.lazarus-ide.org> wrote: Having a problem with some code here :) Lazarus 1.9.0 r55266M FPC 3.1.1 x86_64-linux-gtk2 I create a thread every second

[Lazarus] AsyncProcess code problem

2017-06-09 Thread Steve Gatenby via Lazarus
Having a problem with some code here :) Lazarus 1.9.0 r55266M FPC 3.1.1 x86_64-linux-gtk2 I create a thread every second to run a process (TAsyncprocess), then FreeAndNil the process once done. My app aborts regularly (though intermittently) with the following from gdb. My question is about

[Lazarus] Cross Compile to Arm

2017-06-06 Thread Steve Gatenby via Lazarus
Having trouble cross compiling an fpc library. (Linux x86_64 -> Linux Arm using install from fpcupDeluxe) Lazarus 1.9.0 r55116M FPC 3.1.1 x86_64-linux-gtk2 library Project1; {$mode objfpc}{$H+} uses cmem, Classes; begin end. This fails with error code 256 and 'error whilst linking' Sometimes

Re: [Lazarus] TimeZone problem

2021-01-19 Thread Steve Gatenby via lazarus
On 18/1/21 9:30 pm, Ondrej Pokorny wrote: On 18.01.2021 02:30, Steve Gatenby via lazarus wrote: Would anybody be able to point me to a solution for incorrect time reading ? I obviously have a configuration problem between System and FPC - any pointers much appreciated :) Lazarus 2.1.0

[Lazarus] Color Lists in Lazarus IDE

2021-01-03 Thread Steve Gatenby via lazarus
Just a simple niggle if I could :) Is it possible to have the color combo dropdowns in the Object Inspector start at the top of the list when opened ? I find I am always scrolling the list up to find the base colors whilst form designing. Just a whinger sitting in a dark(ish) room a lot :)

Re: [Lazarus] Process differences

2021-10-21 Thread Steve Gatenby via lazarus
(mis-directed earlier reply - sorry about that) Thanks Denis - will try that. will also check my user rights as Juha suggested as well gotta be something my end :) On 19/10/21 19:36, Denis Kozlov wrote: On Tue, 19 Oct 2021 at 05:58, Steve Gatenby via lazarus wrote: Hoping someone

[Lazarus] Process differences

2021-10-18 Thread Steve Gatenby via lazarus
Hoping someone could shed some light on why different results on the following code :) Example 1 - simple fpc app (as below) - works as expected - full output to text file program project1; uses Classes, SysUtils, Process; var   sData        :ansistring;   slTemp    :TStringList = NIL;

[Lazarus] Assigning Class to object

2021-12-05 Thread Steve Gatenby via lazarus
Please dont judge on simplicity of question (or questioner) -  :) if I call the following procedure with either a TButton or Panel ctrl (for example), how can I use the class info contained within the MyObj to choose the correct Class procedure SetThis( MyObj :TObject ); begin   // this

Re: [Lazarus] Assigning Class to object

2021-12-05 Thread Steve Gatenby via lazarus
Thank you, that should work for me :) On 6/12/21 10:15 am, R.Smith via lazarus wrote: > if I call the following procedure with either a TButton or Panel ctrl (for example), how can I use the class info contained within the MyObj to choose the correct Class Two things, Firstly the correct

Re: [Lazarus] SVG Object

2022-01-17 Thread Steve Gatenby via lazarus
On 16-1-2022 23:34, Steve Gatenby via lazarus wrote: Not sure if this is the right place to ask about this one - I am using the BCSVGViewer from bgra controls - for SVG viewing obviously :) Would anybody know if there is a method to retrieve the object (within the svg) at specified x,y

[Lazarus] Love the IDE

2022-03-14 Thread Steve Gatenby via lazarus
have been using both Atom and VsCode for a couple of weeks now (ESP coding) Just like to note ( hopefully without bashing the above ) really love the Lazarus IDE :) - it is miles above in usability -- ___ lazarus mailing list

Re: [Lazarus] SVG Object

2022-01-17 Thread Steve Gatenby via lazarus
(not a problem for my use case so far) On 18/1/22 9:53 am, Mehmet Erol Sanliturk wrote: On Tue, Jan 18, 2022 at 2:37 AM Steve Gatenby via lazarus mailto:lazarus@lists.lazarus-ide.org>> wrote: Thanks Marc - seems I will need to stick with what I have then. Currently I am pulling all

Re: [Lazarus] SVG Object

2022-01-18 Thread Steve Gatenby via lazarus
Thanks Mehmet - I see some study coming my way :) On 18/1/22 6:47 pm, Mehmet Erol Sanliturk wrote: On Tue, Jan 18, 2022 at 7:22 AM Steve Gatenby via lazarus mailto:lazarus@lists.lazarus-ide.org>> wrote: Thank you Mehmet - Tried to follow the math within the svg (inkscape)

[Lazarus] SVG Object

2022-01-16 Thread Steve Gatenby via lazarus
Not sure if this is the right place to ask about this one - I am using the BCSVGViewer from bgra controls - for SVG viewing obviously :) Would anybody know if there is a method to retrieve the object (within the svg) at specified x,y ? or is it possible to use embedded links within the svg ?

[Lazarus] Compiler default naming conventions

2023-04-24 Thread Steve Gatenby via lazarus
Anybody know how to set project options to force OS conventions on libraries - .dll (windows) / .so(linux) WITHOUT changing case :) My current settings handle extensions ok, but lowercases filenames. Thanks - SteveG -- ___ lazarus mailing list

Re: [Lazarus] MJPEG streamer

2023-07-27 Thread Steve Gatenby via lazarus
On 24/7/23 09:35, Steve Gatenby via lazarus wrote: On 23/7/23 18:35, Steve Gatenby via lazarus wrote: Would anybody know if there is a component / code to enable reading an mjpeg stream from a http camera to a Lazarus form/panel (or anything really) Dont mind installing libraries etc

[Lazarus] MJPEG streamer

2023-07-23 Thread Steve Gatenby via lazarus
Would anybody know if there is a component / code to enable reading an mjpeg stream from a http camera to a Lazarus form/panel (or anything really) Dont mind installing libraries etc - Looking to suit Linux specifically though Thanks - SteveG --

Re: [Lazarus] MJPEG streamer

2023-07-23 Thread Steve Gatenby via lazarus
On 23/7/23 18:35, Steve Gatenby via lazarus wrote: Would anybody know if there is a component / code to enable reading an mjpeg stream from a http camera to a Lazarus form/panel (or anything really) Dont mind installing libraries etc - Looking to suit Linux specifically though Thanks