Michael -
On Sat, 3 Sep 2005 19:57 you wrote:
> > Running "make pdf" fails similarly, with:
> > l.120 ...legal enum minimum-size specifier "arg1"]
> It is hopefully fixed now.
Thanks for your effort and response. I've updated from svn
and tried "make html", but behaviour was exactly the same
as
>
> Dear all,
>
> I have a little problem (maybe in understanding) of the usage of the
> AnsiString.
>
> I use now FPC 1.0.6 (not updated yet to 2.0.0 as have fear that
> something in my old projects wont work)
>
> I will get right on the point.
> It seems to me that I can not use SA:=SA+'z
Dear all,
I have a little problem (maybe in understanding) of the usage of the
AnsiString.
I use now FPC 1.0.6 (not updated yet to 2.0.0 as have fear that
something in my old projects wont work)
I will get right on the point.
It seems to me that I can not use SA:=SA+'zz'
On Sun, 4 Sep 2005, Pianoman wrote:
> Hi Michael, I tested your proc but it don't want to ccompile .
> program follows:
> program test;
> var a,b,c,d:integer;
> res:double;
>
>
> Procedure AddNums(Var Result : Double; Args : Array of integer);
This must be "array of const", not "Array of inte
Hi Michael, I tested your proc but it don't want to ccompile .
program follows:
program test;
var a,b,c,d:integer;
res:double;
Procedure AddNums(Var Result : Double; Args : Array of integer);
Var
I : Integer;
begin
Result:=0;
For I:=0 to High(Args) do // High(args) is the last valid index.