(CodeLib-Manager)
Registriert seit: 27. Nov 2008
Ort: Delmenhorst
2.379 Beiträge
|
Re: Calculate Min Max of integer
2. Dez 2009, 22:23
Well, I see... You know the problem, why don't you fix that? Let me show you something:
Delphi-Quellcode:
unit Unit3;
interface
{...}
var
Form3: TForm3;
temp: TMyInt;
{...}
procedure TMyInt.Init;
begin
FInit := True;
end;
{...}
procedure TForm3.Timer1Timer(Sender: TObject);
begin
temp.Init;
temp.Value:=Random(100);
form3.Caption:=' Value '+inttostr(Temp.Value)+' Min '+inttostr(temp.Min)+' Max '+inttostr(temp.Max);
end;
end.
See the difference?
米斯蘭迪爾 "In einer Zeit universellen Betruges wird das Aussprechen der Wahrheit zu einem revolutionären Akt." -- 1984, George Orwell
|