www.pudn.com > 邮件群发程序1.2.rar > about.pas


unit about; 
 
interface 
 
uses 
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, 
  Dialogs, StdCtrls, ExtCtrls, Buttons,ShellAPI; 
 
type 
  TfrmAbout = class(TForm) 
    GroupBox1: TGroupBox; 
    Image1: TImage; 
    Label1: TLabel; 
    Label2: TLabel; 
    Label4: TLabel; 
    nameLabel: TLabel; 
    Label3: TLabel; 
    procedure nameLabelClick(Sender: TObject); 
  private 
    { Private declarations } 
  public 
    { Public declarations } 
  end; 
 
var 
  frmAbout: TfrmAbout; 
 
implementation 
 
{$R *.dfm} 
 
procedure TfrmAbout.nameLabelClick(Sender: TObject); 
begin 
    ShellExecute(Application.MainForm.Handle,'open',PChar(nameLabel.Caption),nil,nil,SW_NORMAL); 
end; 
 
end.