-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtablesdirectoryfrm.lfm
84 lines (84 loc) · 1.76 KB
/
tablesdirectoryfrm.lfm
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
79
80
81
82
83
84
object TablesDirectoryForm: TTablesDirectoryForm
Left = -1226
Height = 698
Top = 189
Width = 900
Caption = 'Tables Directory'
ClientHeight = 698
ClientWidth = 900
DesignTimePPI = 120
OnShow = FormShow
Position = poMainFormCenter
LCLVersion = '3.8.0.0'
object TablesListLbl: TLabel
Left = 10
Height = 20
Top = 42
Width = 67
Caption = 'Tables List'
end
object ColumnsList: TDBLookupListBox
Left = 280
Height = 558
Top = 100
Width = 268
Anchors = [akTop, akLeft, akBottom]
KeyField = 'name'
ListField = 'name'
ListFieldIndex = 0
ListSource = DataForm.ColumnsSource1
LookupCache = False
OnKeyDown = ColumnsListKeyDown
TabOrder = 0
end
object ColumnsListLbl: TLabel
Left = 280
Height = 20
Top = 42
Width = 106
Caption = 'Columns List for'
end
object ShortcutLbl: TLabel
Left = 10
Height = 20
Top = 669
Width = 330
Caption = 'Press Ctrl+A to add Table or Column to Query text'
end
object DBText1: TDBText
Left = 280
Height = 20
Top = 70
Width = 60
Constraints.MaxWidth = 268
DataField = 'name'
DataSource = DataForm.TablesSource1
Font.Style = [fsBold]
ParentFont = False
end
object SearchEdit: TEdit
Left = 10
Height = 40
Top = 0
Width = 268
AutoSize = False
TabOrder = 1
TextHint = 'Search tables'
OnChange = SearchEditChange
end
object TableList: TDBLookupListBox
Left = 10
Height = 588
Top = 70
Width = 268
Anchors = [akTop, akLeft, akBottom]
KeyField = 'name'
ListField = 'name'
ListFieldIndex = 0
ListSource = DataForm.TablesSource1
LookupCache = False
OnClick = TableListClick
OnKeyDown = TableListKeyDown
TabOrder = 2
end
end