I have an equation like this, rel:=xy*(avalue[0] / avg); That statement look fine to me but I cant figure it out?
if StaticFail> MaxFF then PassAll := 1;
StaticFail is a basic counter that counts whether a certain comparison in a procedure passes or not, while MaxFF is what the user selects to set as maximum via a TEdit box.......both are integer type identifiers.
Hi typo,StaticFail is a basic counter that counts whether a certain comparison in a procedure passes or not, while MaxFF is what the user selects to set as maximum via a TEdit box......
Hi typo,StaticFail is a basic counter that counts whether a certain comparison in a procedure passes or not, while MaxFF is what the user selects to set as maximum via a TEdit box.......both are integer type identifiers. I'm trying to understand what the purpose of "overload" is and how it relates to a seemingly simple comparison process. The explanation in the Free Pascal Referance guide has left me even more confused
I'm getting the same error for the following code:Code: [Select] for i:=2 to f.size-1 do m[i]:=m[i] xor m[i-2];m is pbytearray pointing to f
for i:=2 to f.size-1 do m[i]:=m[i] xor m[i-2];
{$IFDEF fpc} Data: PByte; {$ELSE} Data: PByteArray; {$ENDIF}
Just quoting with code tags, to show what it looks like without forum changing it italic. I can't see what's wrong with the code. Maybe elsewhere? Can you try PByte instead of PByteArray?