Witam.
Czy ten kod jest poprawny?:
var i: integer;
begin
for i := 0 to Form1.Memo1.Lines.Count - 1 do
if Pos('Krakow', (Form1.Memo1.Lines.Strings[i])) > 0 then
begin
ShowMessage('Hello');
break;
end
else
begin
application.Title:='WTF?!';
ShowMessage('Are you kidding me?!');
application.Terminate;
end;
end;
Wydawało mi się, że można to też zrobić bez break.