-
Notifications
You must be signed in to change notification settings - Fork 3
/
about.pas
56 lines (39 loc) · 919 Bytes
/
about.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
unit About;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ExtCtrls,
StdCtrls, Buttons, ShellApi;
type
{ TfAbout }
TfAbout = class(TForm)
BitBtn1: TBitBtn;
Image1: TImage;
Label1: TLabel;
Label10: TLabel;
Label2: TLabel;
Label3: TLabel;
Label4: TLabel;
Label5: TLabel;
Label6: TLabel;
Label7: TLabel;
Label8: TLabel;
Label9: TLabel;
Memo1: TMemo;
Panel1: TPanel;
procedure Label3Click(Sender: TObject);
private
{ private declarations }
public
{ public declarations }
end;
var
fAbout: TfAbout;
implementation
{$R *.lfm}
{ TfAbout }
procedure TfAbout.Label3Click(Sender: TObject);
begin
if ShellExecute(0,nil, PChar('cmd'),PChar('/c start http://xn--90abhbolvbbfgb9aje4m.xn--p1ai/'),nil,0) =0 then;
end;
end.