Re: [Lazarus] Changes to fpWeb...

2018-05-01 Thread Michael Van Canneyt via Lazarus
On Tue, 1 May 2018, Marcos Douglas B. Santos via Lazarus wrote: but I would appreciate feedback if you have cases where your datamodules no longer behave as they used to (both with LegacyRouting=true or false) Some more improvements to fpweb are planned, but they will not be as invasive as th

Re: [Lazarus] About a warning of unused parameter.

2018-05-01 Thread Mattias Gaertner via Lazarus
On Wed, 2 May 2018 02:19:05 +0200 "Carlos E. R. via Lazarus" wrote: >[...] > function TPINGSend.Checksum6(Value: AnsiString): Word; > begin > Result := 0; > end; You can: a) add a dummy statement: if Value='' then ; b) add an IDE directive: right click on this message in the Lazarus Messages w

Re: [Lazarus] Changes to fpWeb...

2018-05-01 Thread Marcos Douglas B. Santos via Lazarus
On Tue, May 1, 2018 at 9:59 PM, Marcos Douglas B. Santos wrote: > Hello Michael, > > Is there a documentation link to explain all new features? > I'm gonna start a new web project and I would like to use them. > > What about the design packages for Lazarus? > The wizards continue creating Web Mod

Re: [Lazarus] Changes to fpWeb...

2018-05-01 Thread Marcos Douglas B. Santos via Lazarus
On Fri, Jan 13, 2017 at 7:36 PM, Michael Van Canneyt via Lazarus < lazarus@lists.lazarus-ide.org> wrote: > > Hello, > > I have committed a serious change to the way fpweb handles requests. > > Especially routing of requests was changed. > > The old Delphi style routing worked with Datamodules only

[Lazarus] About a warning of unused parameter.

2018-05-01 Thread Carlos E. R. via Lazarus
Hi, I'm experimenting with doing "ping host" on Lazarus using the Synapse library (http://synapse.ararat.cz/doku.php/download). The code on my side is very simple, I just have to "use pingsend", then basically ping.ping('some host'); I have a little nuisance: building the included library produce

Re: [Lazarus] Make of revision 57762 failing under Raspbian

2018-05-01 Thread Joe via Lazarus
Am 01.05.2018 um 22:26 schrieb Ondrej Pokorny via Lazarus: Please retest with r57764. Yes, now ok. Thanx, Ondrej. Joe -- ___ Lazarus mailing list Lazarus@lists.lazarus-ide.org https://lists.lazarus-ide.org/listinfo/lazarus

Re: [Lazarus] Make of revision 57762 failing under Raspbian

2018-05-01 Thread Ondrej Pokorny via Lazarus
On 01.05.2018 19:25, Joe via Lazarus wrote: What's wrong? Is it a mistake of the operator or a software bug? Should I file a mantis report? It's my mistake. Please retest with r57764. I may have forgotten more places. Ondrej -- ___ Lazarus mailing

Re: [Lazarus] Component editors and related

2018-05-01 Thread Werner Pamler via Lazarus
Am 01.05.2018 um 20:54 schrieb Juha Manninen via Lazarus: Please test with r57763. Excellent, works perfectly! Thank you. -- ___ Lazarus mailing list Lazarus@lists.lazarus-ide.org https://lists.lazarus-ide.org/listinfo/lazarus

Re: [Lazarus] Component editors and related

2018-05-01 Thread Juha Manninen via Lazarus
On Wed, Apr 25, 2018 at 8:56 PM, Werner Pamler via Lazarus wrote: > currently I am porting those JVCL components which look interesting to me > (https://sourceforge.net/p/lazarus-ccr/svn/HEAD/tree/components/jvcllaz/), > but at the moment I am stuck with the component editor of the TJvOutlookBar.

[Lazarus] Make of revision 57762 failing under Raspbian

2018-05-01 Thread Joe via Lazarus
On Raspberry Pi 3B+ computers under Raspbian Stretch 20180418 with Lazarus 1.6.2 installed I tried to compile the current development revision 57762 of Lazarus. It failed in 'grids.pas', line 4150, with error 'identifier idents no member "Width"'. This I did: (1) Created directory '~/lazarus'.

Re: [Lazarus] Note about LCL GetDefaultGlyph

2018-05-01 Thread Ondrej Pokorny via Lazarus
On 01.05.2018 16:48, AlexeyT via Lazarus wrote: + +function GetDefaultGlyph(ResourceName: string; ScalePercent: Integer = 100): TCustomBitmap; +begin +  Result := TPortableNetworkGraphic.Create; +  if ScalePercent<>100 then +    ResourceName := ResourceName+'_'+IntToStr(ScalePercent); +  Result

[Lazarus] Note about LCL GetDefaultGlyph

2018-05-01 Thread AlexeyT via Lazarus
+ +function GetDefaultGlyph(ResourceName: string; ScalePercent: Integer = 100): TCustomBitmap; +begin +  Result := TPortableNetworkGraphic.Create; +  if ScalePercent<>100 then +    ResourceName := ResourceName+'_'+IntToStr(ScalePercent); +  Result.LoadFromResourceName(hInstance, ResourceName); +

Re: [Lazarus] Unknown error codes.

2018-05-01 Thread Carlos E. R. via Lazarus
On 2018-05-01 10:48, Rik van Kekem via Lazarus wrote: > > Small test-program will give you a list: > var >   I: Integer; > begin >   for I := 0 to 99 do >   begin >     Memo1.Lines.Add(Format('%d - %s', [I, SysErrorMessage(I)])); >   end; In fact, it also prints errors beyond 100: program errorm

Re: [Lazarus] Unknown error codes.

2018-05-01 Thread Carlos E. R. via Lazarus
On 2018-05-01 10:48, Rik van Kekem via Lazarus wrote: > On 29-04-2018 23:55, Carlos E. R. via Lazarus wrote: >> It does not list the error 26 I got. >> It is possible that there are different numbers on different operating >> systems? That list seems to be related to Windows, but the link does not

Re: [Lazarus] Unknown error codes.

2018-05-01 Thread Rik van Kekem via Lazarus
On 29-04-2018 23:55, Carlos E. R. via Lazarus wrote: It does not list the error 26 I got. It is possible that there are different numbers on different operating systems? That list seems to be related to Windows, but the link does not say. It's always possible to get the text of an OS error via