home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / Runimage / Delphi50 / Demos / Db / Dberrors / about.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1999-08-11  |  535 b   |  34 lines

  1. unit About;
  2.  
  3. interface
  4.  
  5. uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
  6.   Buttons, ExtCtrls, ComCtrls;
  7.  
  8. type
  9.   TFmAboutBox = class(TForm)
  10.     Panel1: TPanel;
  11.     ProgramIcon: TImage;
  12.     ProductName: TLabel;
  13.     Version: TLabel;
  14.     Panel2: TPanel;
  15.     Label2: TLabel;
  16.     Image1: TImage;
  17.     Memo1: TMemo;
  18.     Button1: TButton;
  19.   private
  20.     { Private declarations }
  21.   public
  22.     { Public declarations }
  23.   end;
  24.  
  25. var
  26.   FmAboutBox: TFmAboutBox;
  27.  
  28. implementation
  29.  
  30. {$R *.DFM}
  31.  
  32. end.
  33.  
  34.