Subversion Repositories spacemission

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4 daniel-mar 1
{
2
 SXMedia  Components - Beta 1
3
 --------------------------------
4
 Copyright 1999 Dean Ellis
5
 http://www.sillex.freeserve.co.uk
6
 
7
 This unit is part of the SXMedia Component Set. This code is
8
 supplied as is with no guarantees and must be used at your own
9
 risk.
10
 
11
 No modifications to this code must be made without the express
12
 permission of the author. Please report any problems to
13
 support@sillex.freeserve.co.uk
14
 
15
 You may use these components to create any freeware/shareware
16
 applications that you wish. If the components are to be used in
17
 a commercail product then credit for developement of these components
18
 should be given.
19
 
20
 Credits :
21
 
22
 Developer : Dean Ellis
23
}
24
unit sxabout;
25
 
26
interface
27
 
28
uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
29
  Buttons, ExtCtrls;
30
 
31
type
32
  TAboutBox = class(TForm)
33
    InfoContainer: TPanel;
34
    Version: TLabel;
35
    Copyright: TLabel;
36
    OKButton: TButton;
37
    Author: TLabel;
38
    WebSite: TLabel;
39
    Credits: TLabel;
40
    LogoContainer: TPanel;
41
    ProgramIcon: TImage;
42
  private
43
    { Private declarations }
44
  public
45
    { Public declarations }
46
  end;
47
 
48
implementation
49
 
50
{$R *.DFM}
51
 
52
end.
53