forked from oldprogs/simplex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbout.pas
More file actions
44 lines (34 loc) · 995 Bytes
/
About.pas
File metadata and controls
44 lines (34 loc) · 995 Bytes
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
unit About;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, JvExControls, JvComponent, JvXPCore, JvXPButtons, JvLabel,
StdCtrls, JvExStdCtrls, JvHtControls, JvPoweredBy;
type
TAboutForm = class(TForm)
LProduct: TJvLabel;
OkBtn: TJvXPButton;
LCredits: TJvHTLabel;
JvPoweredByJVCL1: TJvPoweredByJVCL;
procedure OkBtnClick(Sender: TObject);
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
AboutForm: TAboutForm;
implementation
{$R *.dfm}
uses Main;
procedure TAboutForm.OkBtnClick(Sender: TObject);
begin
Close;
end;
procedure TAboutForm.FormCreate(Sender: TObject);
begin
LProduct.Caption:=ProductName+' '+GetFileVersion;
LCredits.Caption:='(c) kaman, 2006-2007<br><br>how do u like this product?<br><br>write me 2 <a href="mailto:kaman@rndfido.net">kaman@rndfido.net</a> || 2:5061/120 <br>if u want some more';
end;
end.