MdIlpeForm.pas
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit MdIlpeForm;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  5.   StdCtrls, Buttons;
  6. type
  7.   TIntListPEForm = class(TForm)
  8.     BitBtn1: TBitBtn;
  9.     BitBtn2: TBitBtn;
  10.     Memo1: TMemo;
  11.     BitBtn3: TBitBtn;
  12.     procedure BitBtn3Click(Sender: TObject);
  13.   private
  14.     { Private declarations }
  15.   public
  16.     { Public declarations }
  17.   end;
  18. {var
  19.   IntListPEForm: TIntListPEForm;}
  20. implementation
  21. {$R *.DFM}
  22. procedure TIntListPEForm.BitBtn3Click(Sender: TObject);
  23. var
  24.   I: Integer;
  25. begin
  26.   for I := 0 to 9 do
  27.     Memo1.Lines [I] := IntToStr (I * 100);
  28. end;
  29. end.