home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / source9 / scratch / mscomm / about.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1995-12-22  |  624 b   |  39 lines

  1. unit About;
  2.  
  3. interface
  4.  
  5. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
  6.   Buttons, ExtCtrls;
  7.  
  8. type
  9.   TfrmAbout = class(TForm)
  10.     Panel1: TPanel;
  11.     ProgramIcon: TImage;
  12.     ProductName: TLabel;
  13.     Version: TLabel;
  14.     Copyright: TLabel;
  15.     btnOK: TButton;
  16.     Label1: TLabel;
  17.     lblVersion: TLabel;
  18.     procedure btnOKClick(Sender: TObject);
  19.   private
  20.     { Private declarations }
  21.   public
  22.     { Public declarations }
  23.   end;
  24.  
  25. var
  26.   frmAbout: TfrmAbout;
  27.  
  28. implementation
  29.  
  30. {$R *.DFM}
  31.  
  32. procedure TfrmAbout.btnOKClick(Sender: TObject);
  33. begin
  34.   Close
  35. end;
  36.  
  37. end.
  38.  
  39.