About.pas
资源名称:计算机远程监控.rar [点击查看]
上传用户:rickyhu
上传日期:2007-05-27
资源大小:842k
文件大小:1k
源码类别:
控制台编程
开发平台:
Delphi
- ////////////////////////////////////////////////////////////////////////////////
- //
- // 2004 (C) Copyrights Reserved
- // Author:Aureala
- //
- ////////////////////////////////////////////////////////////////////////////////
- unit About;
- interface
- uses
- Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
- Dialogs, jpeg, ExtCtrls, StdCtrls;
- type
- TAboutForm = class(TForm)
- ImageAbout: TImage;
- Memo: TMemo;
- Button: TButton;
- procedure ButtonClick(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
- var
- AboutForm: TAboutForm;
- implementation
- {$R *.dfm}
- procedure TAboutForm.ButtonClick(Sender: TObject);
- begin
- Close;
- Release;
- end;
- end.