-
Notifications
You must be signed in to change notification settings - Fork 0
/
UAboutBox.pas
95 lines (28 loc) · 900 Bytes
/
UAboutBox.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// Newtons3LawsOfMotion - Demonstrates Newton's Three Laws of Motion
// https://ardeshirv.github.io/Newtons3LawsOfMotion/
// Copyright© 2002-2004 ArdeshirV@protonmail.com, Licensed under GPLv3+
unit UAboutBox;
interface
uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ExtCtrls, jpeg, XPMan;
type
TAboutBox = class(TForm)
Panel: TPanel;
ProductName: TLabel;
Label2: TLabel;
Version: TLabel;
Image: TImage;
Timer1: TTimer;
Label1: TLabel;
procedure Timer1Timer(Sender: TObject);
end;
var
AboutBox: TAboutBox;
implementation
{$R *.dfm}
procedure TAboutBox.Timer1Timer(Sender: TObject);
begin
self.Close;
end;
end.
//Copyright© Saeed Tavakolian.