-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunit3.pas
More file actions
71 lines (50 loc) · 1.36 KB
/
Copy pathunit3.pas
File metadata and controls
71 lines (50 loc) · 1.36 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{*
The ‘i6z Toolkit’ is an application for manipulating IUCLID 6 files (*.i6z).
It provides users with the ability to preview, batch rename/move/copy such
files, display their ‘Manifest.xml’ in Tree View layout, as well as, export
the list to a CSV file.
Version: 0.95-Beta
Copyright © 2019 Petro Dudi.
Licensed under the GPL v3.0.
Icons from https://icons8.com.
*}
unit Unit3;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, LCLIntf,
ExtCtrls, Buttons;
type
{ TForm3 }
TForm3 = class(TForm)
btngithub: TBitBtn;
btncoffee: TButton;
btnclose: TButton;
Image1: TImage;
Label1: TLabel;
procedure btngithubClick(Sender: TObject);
procedure btncoffeeClick(Sender: TObject);
procedure btncloseClick(Sender: TObject);
private
public
end;
var
Form3: TForm3;
implementation
{$R *.lfm}
{ TForm3 }
// 'Buy me a coffee' button!
procedure TForm3.btncoffeeClick(Sender: TObject);
begin
OpenURL('https://www.buymeacoffee.com/ADYsLjqfi');
end;
// Opens the application's GitHub repository page
procedure TForm3.btngithubClick(Sender: TObject);
begin
OpenURL('https://github.com/pdudis/i6zToolkit');
end;
procedure TForm3.btncloseClick(Sender: TObject);
begin
Form3.Close;
end;
end.