-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormAbout.pas
More file actions
56 lines (44 loc) · 1.39 KB
/
FormAbout.pas
File metadata and controls
56 lines (44 loc) · 1.39 KB
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
{*************************************************************************}
{ This file is part of Files And Folders. }
{ Copyright (c) 1997-2025 Hellogramming }
{ https://www.hellogramming.com/ }
{ }
{ Files And Folders is free software; you can redistribute it and/or }
{ modify it under the terms of the MIT License. }
{*************************************************************************}
unit FormAbout;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ExtCtrls;
type
TAboutBox = class(TForm)
Image1: TImage;
Label1: TLabel;
Label3: TLabel;
Label4: TLabel;
cmdOK: TButton;
Label6: TLabel;
Edit1: TEdit;
Image2: TImage;
Label5: TLabel;
procedure cmdOKClick(Sender: TObject);
procedure Image2Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
AboutBox: TAboutBox;
implementation
{$R *.DFM}
procedure TAboutBox.cmdOKClick(Sender: TObject);
begin
Close;
end;
procedure TAboutBox.Image2Click(Sender: TObject);
begin
WinExec('start https://www.hellogramming.com/', 0);
end;
end.