- Код: Выделить всё
unit Unit1;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs,
StdCtrls;
type
{ TForm1 }
TForm1 = class(TForm)
Button1: TButton;
ListBox1: TListBox;
procedure Button1Click(Sender: TObject);
private
{ private declarations }
public
{ public declarations }
end;
var
Form1: TForm1;
implementation
{ TForm1 }
procedure TForm1.Button1Click(Sender: TObject);
var
iFor, iFor2, xI: integer;
begin
ListBox1.Hide;
ListBox1.Clear;
for iFor := 0 to 10000 do
for iFor2 := 0 to iFor do
begin
if iFor2 > 100 then break;
if not(iFor2 in [0..iFor]) then
ListBox1.Items.Add('Top=' + IntToStr(iFor) + '; In=' + IntToStr(iFor2));
end;
ListBox1.Show;
end;
initialization
{$I unit1.lrs}
end.
Начиная с 256 (верхняя граница вхождения) функция в нерабочем состоянии.
Баг или как?