About.pas
上传用户:llfxmlw
上传日期:2009-09-14
资源大小:335k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit About;
  2. interface
  3. uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
  4.   Buttons, ExtCtrls, verslab, ShellAPI;
  5. type
  6.   TAboutBox = class(TForm)
  7.     Panel1: TPanel;
  8.     ProgramIcon: TImage;
  9.     ProductName: TLabel;
  10.     OKButton: TButton;
  11.     VersionLabel1: TVersionLabel;
  12.     VersionLabel2: TVersionLabel;
  13.     VersionLabel3: TVersionLabel;
  14.     Label1: TLabel;
  15.     procedure Label1Click(Sender: TObject);
  16.   private
  17.     { Private declarations }
  18.   public
  19.     { Public declarations }
  20.   end;
  21. var
  22.   AboutBox: TAboutBox;
  23. implementation
  24. {$R *.DFM}
  25. procedure TAboutBox.Label1Click(Sender: TObject);
  26. begin
  27.    ShellExecute(Handle, 'open', 'mailto:bziegler@radix.net', nil, nil, SW_SHOW);
  28. end;
  29. end.