where can i find good articles about Delphi?
what is wrong with this loop?
procedure TForm1.Button1Click(Sender: TObject);
var a: integer;
begin
for a:=1 to 5 do
begin
ShowMessage('Window: '+InToStr(a));
end;
end;
end.
i receive this error
[Error] Unit1.pas(31): Undeclared identifier: 'InToStr'
any help is appreciated