-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUnit2.pas
More file actions
36 lines (28 loc) · 728 Bytes
/
Unit2.pas
File metadata and controls
36 lines (28 loc) · 728 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
unit Unit2;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.Imaging.pngimage, Vcl.ExtCtrls, Winapi.ShellAPI,
JvExControls, JvLinkLabel;
type
TfmAbout = class(TForm)
Image1: TImage;
AppTitleLabel: TLabel;
DescLabel: TLabel;
VersionLabel: TLabel;
AutorLabel: TJvLinkLabel;
procedure AutorLabelClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
fmAbout: TfmAbout;
implementation
{$R *.dfm}
procedure TfmAbout.AutorLabelClick(Sender: TObject);
begin
ShellExecute(0,'Open','www.ogursoft.ru','','',0);
end;
end.