-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathToolWhiteList.pas
More file actions
38 lines (29 loc) · 771 Bytes
/
Copy pathToolWhiteList.pas
File metadata and controls
38 lines (29 loc) · 771 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
unit ToolWhiteList;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Tool, AdvUtil, Vcl.Grids, AdvObj,
BaseGrid, AdvGrid, DBAdvGrid, Vcl.StdCtrls, Vcl.ExtCtrls;
type
TfrmToolWhiteList = class(TfrmTool)
DBAdvGrid2: TDBAdvGrid;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
frmToolWhiteList: TfrmToolWhiteList;
implementation
uses WhiteList;
{$R *.dfm}
procedure TfrmToolWhiteList.Button1Click(Sender: TObject);
var
frmWhiteList: TfrmWhiteList;
begin
frmWhiteList := TfrmWhiteList.Create(nil);
frmWhiteList.ShowModal;
frmWhiteList.Free;
end;
end.