home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / intmail2 / msabout.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1999-07-20  |  720 b   |  43 lines

  1. unit msabout;
  2.  
  3. interface
  4.  
  5. uses
  6.   WinProcs, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   ExtCtrls, StdCtrls;
  8.  
  9. type
  10.   TAboutDlg = class(TForm)
  11.     ProgramName: TLabel;
  12.     Label2: TLabel;
  13.     Bevel1: TBevel;
  14.     ProductVersion: TLabel;
  15.     Label4: TLabel;
  16.     OKButton: TButton;
  17.     Image1: TImage;
  18.     Label6: TLabel;
  19.     Label7: TLabel;
  20.     Label1: TLabel;
  21.     procedure FormCreate(Sender: TObject);
  22.   private
  23.     { Private declarations }
  24.   public
  25.     { Public declarations }
  26.   end;
  27.  
  28. var
  29.   AboutDlg: TAboutDlg;
  30.  
  31. implementation
  32.  
  33. uses msDef;
  34.  
  35. {$R *.DFM}
  36.  
  37. procedure TAboutDlg.FormCreate(Sender: TObject);
  38. begin
  39.   ProductVersion.Caption:=msVersion;
  40. end;
  41.  
  42. end.
  43.