-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathufrmDSExplorerMain.pas
More file actions
78 lines (68 loc) · 2.1 KB
/
Copy pathufrmDSExplorerMain.pas
File metadata and controls
78 lines (68 loc) · 2.1 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
72
73
74
75
76
77
78
unit ufrmDSExplorerMain;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Graphics, FMX.Controls, FMX.Forms, FMX.Dialogs, FMX.StdCtrls, FMX.Controls.Presentation, FMX.ListView.Types,
FMX.ListView.Appearances, FMX.ListView.Adapters.Base, FMX.ListView, System.Rtti, System.Bindings.Outputs, Fmx.Bind.Editors,
Data.Bind.EngExt, Fmx.Bind.DBEngExt, Data.Bind.Components, Data.Bind.DBScope, FMX.Edit;
type
TfrmDSExplorerMain = class(TForm)
Header: TToolBar;
Footer: TToolBar;
lblHeader: TLabel;
pnlVendors: TPanel;
lvVendors: TListView;
lblVendors: TLabel;
BindSourceDBVendors: TBindSourceDB;
BindingsList1: TBindingsList;
LinkListControlToField1: TLinkListControlToField;
pnlDataSets: TPanel;
lblDataSet: TLabel;
lvDataSets: TListView;
BindSourceDBDataSets: TBindSourceDB;
LinkListControlToField2: TLinkListControlToField;
Panel1: TPanel;
lblLookup1: TLabel;
lvLookup1: TListView;
BindSourceDBLookup1: TBindSourceDB;
LinkListControlToField3: TLinkListControlToField;
Panel2: TPanel;
Label1: TLabel;
lvLookup2: TListView;
BindSourceDBLookup2: TBindSourceDB;
LinkListControlToField4: TLinkListControlToField;
Label2: TLabel;
Panel3: TPanel;
Label4: TLabel;
lvRecord: TListView;
BindSourceDBRecord: TBindSourceDB;
LinkListControlToField5: TLinkListControlToField;
Edit1: TEdit;
LinkControlToField1: TLinkControlToField;
Label3: TLabel;
Edit3: TEdit;
LinkControlToField2: TLinkControlToField;
Label6: TLabel;
Edit2: TEdit;
LinkControlToField3: TLinkControlToField;
btnRefresh: TButton;
StyleBook1: TStyleBook;
procedure btnRefreshClick(Sender: TObject);
private
procedure RefreshVendors;
end;
var
frmDSExplorerMain: TfrmDSExplorerMain;
implementation
{$R *.fmx}
{$R *.Windows.fmx MSWINDOWS}
uses udmRProPluginDS;
procedure TfrmDSExplorerMain.btnRefreshClick(Sender: TObject);
begin
RefreshVendors;
end;
procedure TfrmDSExplorerMain.RefreshVendors;
begin
dmRProPluginDS.RefreshAllQueries;
end;
end.