MdIlpeForm.pas
资源名称:delphi.rar [点击查看]
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:1k
源码类别:
Delphi控件源码
开发平台:
Delphi
- unit MdIlpeForm;
- interface
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- StdCtrls, Buttons;
- type
- TIntListPEForm = class(TForm)
- BitBtn1: TBitBtn;
- BitBtn2: TBitBtn;
- Memo1: TMemo;
- BitBtn3: TBitBtn;
- procedure BitBtn3Click(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
- {var
- IntListPEForm: TIntListPEForm;}
- implementation
- {$R *.DFM}
- procedure TIntListPEForm.BitBtn3Click(Sender: TObject);
- var
- I: Integer;
- begin
- for I := 0 to 9 do
- Memo1.Lines [I] := IntToStr (I * 100);
- end;
- end.