Am 09.09.2022 um 00:49 schrieb Hairy Pixels via fpc-pascal:
On Sep 8, 2022, at 11:14 AM, Michael Van Canneyt via fpc-pascal
wrote:
It must keep this information somewhere, but this does not mean you can
typecast it to a TMethod.
Indeed. I wonder if this information could be exposed by some m
On 9/10/22 10:57 AM, James Richters wrote:
Thanks for the suggestion
I think the syntax should be:
type myKeyEvent = IPTCKeyEvent;
Var myShiftStatus : boolean;
myShiftStatus := myKeyEvent.Shift;
i told you i probably had the syntax wrong :lol:
but I get IPTCKeyEvent not found. I wonder if
Hairy Pixels via fpc-pascal schrieb am
Fr., 9. Sep. 2022, 18:05:
> This program gives internal compiler error 2019022201 (Free Pascal
> Compiler version 3.3.1 [2022/05/27] for aarch64). Something is wrong with
> the PPU. This is a very basic program using function references so it
> seems unlike
Hairy Pixels schrieb am Sa., 10. Sep. 2022, 03:21:
>
>
> > On Sep 9, 2022, at 4:48 PM, Sven Barth
> wrote:
> >
> > How about you simply report such corruptions as bugs? I can always close
> them as "not a bug" or duplicate if necessary.
> >
>
> Well I thought the data may have been saved on the
James Richters via fpc-pascal schrieb am
Sa., 10. Sep. 2022, 22:55:
>
> For some reason
> {$Mode FPC}
> {$modeswitch typehelpers}
> Still had Error: Identifier not found "class"
>
Because support for the "class" keyword is only available when the
modeswitch Class is enabled which is the case for
Am 11.09.2022 um 11:26 schrieb Sven Barth via fpc-pascal:
Hairy Pixels schrieb am Sa., 10. Sep. 2022, 03:21:
> On Sep 9, 2022, at 4:48 PM, Sven Barth
wrote:
>
> How about you simply report such corruptions as bugs? I can
always close them as "not a bug" or duplicate if ne
Ondrej Pokorny via fpc-pascal schrieb am
So., 11. Sep. 2022, 12:18:
> Am 11.09.2022 um 11:26 schrieb Sven Barth via fpc-pascal:
>
> Hairy Pixels schrieb am Sa., 10. Sep. 2022, 03:21:
>
>>
>>
>> > On Sep 9, 2022, at 4:48 PM, Sven Barth
>> wrote:
>> >
>> > How about you simply report such corrupt
Am 11.09.2022 um 14:22 schrieb Sven Barth via fpc-pascal:
Ondrej Pokorny via fpc-pascal
schrieb am So., 11. Sep. 2022, 12:18:
Shouldn't this assignment be forbidden?
type
TProc = procedure is nested;
function TestNested: TProc;
begin
result := procedure // why is
Ondrej Pokorny via fpc-pascal schrieb am
So., 11. Sep. 2022, 15:29:
> Am 11.09.2022 um 14:22 schrieb Sven Barth via fpc-pascal:
>
> Ondrej Pokorny via fpc-pascal schrieb
> am So., 11. Sep. 2022, 12:18:
>
>> Shouldn't this assignment be forbidden?
>>
>> type
>> TProc = procedure is nested;
>> f
The loops is just an example because in my original post of why I wanted to
get the highest element of a stringlist was because I wanted a for loop that
wasn't as clumsy as
For I:=0 to myStringlist.count-1 Do
This came up because thanks to this discussion list, I learned I could use
High() and Lo
Trying to compile a small test pascal program on a arm cpu. I beleive
it is an a53. Libre Le Potato
I am getting the following error:
Error: Error while assembling exitcode 1
Thanks in advance,
Terry H.
___
fpc-pascal maillist - fpc-pascal@lists
On Mon, 12 Sep 2022, 02:59 Terry A. Haimann via fpc-pascal, <
fpc-pascal@lists.freepascal.org> wrote:
> Trying to compile a small test pascal program on a arm cpu. I beleive
> it is an a53. Libre Le Potato
>
> I am getting the following error:
>
> Error: Error while assembling exitcode 1
>
> Tha
As Bart suggested, you can use too the for/in loop: for s in sl do
WriteLn( s);
For example:
var
sl: TStringList;
s: String;
begin
sl:= TStringList.Create;
try
sl.Add('1');
sl.Add('2');
for s in sl do WriteLn( s);
finally
FreeAndNil( sl)
13 matches
Mail list logo