2017-02-07 23:17 GMT-03:00 Paul Ishenin :
> 07.02.2017 18:10, Mattias Gaertner wrote:
>
>> The getter/setter of a class-property must be "static" (Delphi
>> compatible).
>> If I understand "static" correctly, then "static" simply omits passing
>> the class as parameter. So a static class procedure
Hi,
I've studied the following documenation to make sure I'm using
FindPath() correctly.
http://www.freepascal.org/docs-html/3.0.0/fcl/fpjson/tjsondata.findpath.html
Now, I have the following JSON data I omitted what is not relevant.
{
...snip...
"Version
On Wed, 8 Feb 2017, Graeme Geldenhuys wrote:
Hi,
I've studied the following documenation to make sure I'm using
FindPath() correctly.
http://www.freepascal.org/docs-html/3.0.0/fcl/fpjson/tjsondata.findpath.html
since . is used as a delimiter between path segments, you indeed cannot find
On 2017-02-08 16:33, Michael Van Canneyt wrote:
> One way is to allow to escape dots in the path.
> But because every character is allowed in a javascript object property, that
> would mean that \. can also be a correct property name, and so we need to
> introduce \\ as an escape for \...
>
> It
On Wed, 8 Feb 2017, Graeme Geldenhuys wrote:
On 2017-02-08 16:33, Michael Van Canneyt wrote:
One way is to allow to escape dots in the path.
But because every character is allowed in a javascript object property, that
would mean that \. can also be a correct property name, and so we need to
i
On 2017-02-08 16:47, Michael Van Canneyt wrote:
> Indeed. If you experiment in the browser console:
It might just be worth adding a small note about that "gotcha" in the
FindPath documentation.
Regards,
Graeme
--
fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal
http://fpgui.so
Thank you guys! Sorry for such delay but finally had time to prepare
seriously my enviromnent for FPC V3. Everything seems to work perfect
(Lazarus IDE and FPC) but just curious question: Is it possible to get
information which FPC version my project was compiled? By binary analysis
or at runtime.
On 08/02/17 21:54, Krzysztof wrote:
Thank you guys! Sorry for such delay but finally had time to prepare
seriously my enviromnent for FPC V3. Everything seems to work perfect
(Lazarus IDE and FPC) but just curious question: Is it possible to get
information which FPC version my project was compil
2017-02-08 21:59 GMT+01:00 Jonas Maebe :
>
>
> http://www.freepascal.org/docs-html/prog/progsu41.html (FPCVERSION)
Excellent!
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
I use a KEYDOWN routine in my main TFORM to check for the key Ctrl+Q:
-
procedure TForm1.FormKeyDown(Sender : TObject;
var Key: Word;
Shift : TShiftState);
begin // TForm1.Fo
On 2/8/17, Jürgen Hestermann wrote:
>
> But when I type "Ctrl+Q" then "Key" is 17 instead of VK_Q (81).
I get $51 for the key when I press Ctrl+Q (Win32).
Bart
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi
Hi,
when you press CTRL+Q you will obtain two OnKeyDown events. The first with
Key=17 (it is CTRL) and the second with Key=81 (Q). Both events will have
ssCtrl in Shift.
V.
__
Od: Jürgen Hestermann
Komu: FPC-Pascal users discussions
Last thing. Is possible that some FPC mixed version of .ppu or .o will be
linked into my binary? I mean some third party stuff which I forgot clean
up etc, you know how it is. Just wondering if final binary file can contain
*.ppu and *.o compiled by different FPC versions
__
In our previous episode, Krzysztof said:
> Last thing. Is possible that some FPC mixed version of .ppu or .o will be
> linked into my binary? I mean some third party stuff which I forgot clean
> up etc, you know how it is. Just wondering if final binary file can contain
> *.ppu and *.o compiled by
14 matches
Mail list logo