-
-
Notifications
You must be signed in to change notification settings - Fork 565
Expand file tree
/
Copy pathsyncdb.dfm
More file actions
219 lines (219 loc) · 6.04 KB
/
syncdb.dfm
File metadata and controls
219 lines (219 loc) · 6.04 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
object frmSyncDB: TfrmSyncDB
Left = 0
Top = 0
Caption = 'frmSyncDB'
ClientHeight = 362
ClientWidth = 534
Color = clBtnFace
Constraints.MinHeight = 400
Constraints.MinWidth = 550
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Tahoma'
Font.Style = []
Position = poMainFormCenter
OnCreate = FormCreate
DesignSize = (
534
362)
TextHeight = 14
object lblSource: TLabel
Left = 8
Top = 8
Width = 169
Height = 13
Caption = 'Select source database or table(s):'
end
object lblDifferences: TLabel
Left = 207
Top = 191
Width = 59
Height = 13
Caption = 'Differences:'
end
object treeSource: TVirtualStringTree
Left = 8
Top = 24
Width = 193
Height = 299
AccessibleName = 'tree'
Anchors = [akLeft, akTop, akBottom]
Header.AutoSizeIndex = 0
Header.Options = [hoAutoResize, hoColumnResize, hoDrag, hoShowSortGlyphs]
Images = MainForm.VirtualImageListMain
TabOrder = 0
TreeOptions.MiscOptions = [toAcceptOLEDrop, toCheckSupport, toFullRepaintOnResize, toInitOnSave, toToggleOnDblClick, toWheelPanning, toEditOnClick]
TreeOptions.PaintOptions = [toHotTrack, toShowButtons, toShowDropmark, toShowRoot, toShowTreeLines, toThemeAware, toUseBlendedImages, toGhostedIfUnfocused, toUseExplorerTheme, toHideTreeLinesIfThemed]
OnChange = treeSourceChange
OnChecked = treeSourceChecked
OnChecking = treeSourceChecking
OnGetText = treeSourceGetText
OnPaintText = treeSourcePaintText
OnGetImageIndex = treeSourceGetImageIndex
OnGetNodeDataSize = treeSourceGetNodeDataSize
OnInitChildren = treeSourceInitChildren
OnInitNode = treeSourceInitNode
Touch.InteractiveGestures = [igPan, igPressAndTap]
Touch.InteractiveGestureOptions = [igoPanSingleFingerHorizontal, igoPanSingleFingerVertical, igoPanInertia, igoPanGutter, igoParentPassthrough]
Columns = <
item
Position = 0
Text = 'Name'
Width = 193
end>
end
object grpTarget: TGroupBox
Left = 207
Top = 8
Width = 319
Height = 105
Anchors = [akLeft, akTop, akRight]
Caption = 'Target database or table'
TabOrder = 1
DesignSize = (
319
105)
object lblTargetServer: TLabel
Left = 9
Top = 21
Width = 36
Height = 13
Caption = 'Server:'
end
object lblTargetDatabase: TLabel
Left = 9
Top = 48
Width = 50
Height = 13
Caption = 'Database:'
end
object lblTargetTable: TLabel
Left = 9
Top = 75
Width = 30
Height = 13
Caption = 'Table:'
end
object comboTargetServer: TComboBox
Left = 88
Top = 18
Width = 223
Height = 21
Style = csDropDownList
Anchors = [akLeft, akTop, akRight]
TabOrder = 0
OnChange = comboTargetServerChange
end
object comboTargetDatabase: TComboBox
Left = 88
Top = 45
Width = 223
Height = 21
Style = csDropDownList
Anchors = [akLeft, akTop, akRight]
TabOrder = 1
OnChange = comboTargetDatabaseChange
end
object comboTargetTable: TComboBox
Left = 88
Top = 72
Width = 223
Height = 21
Style = csDropDownList
Anchors = [akLeft, akTop, akRight]
TabOrder = 2
end
end
object btnClose: TButton
Left = 451
Top = 329
Width = 75
Height = 25
Anchors = [akRight, akBottom]
Cancel = True
Caption = 'Close'
ImageIndex = 26
ImageName = 'icons8-close-button'
Images = MainForm.VirtualImageListMain
ModalResult = 2
TabOrder = 2
end
object btnApply: TButton
Left = 370
Top = 329
Width = 75
Height = 25
Anchors = [akRight, akBottom]
Caption = 'Apply'
Enabled = False
ImageIndex = 120
ImageName = 'icons8-refresh-right'
Images = MainForm.VirtualImageListMain
TabOrder = 3
OnClick = btnApplyClick
end
object btnAnalyze: TButton
Left = 289
Top = 329
Width = 75
Height = 25
Anchors = [akRight, akBottom]
Caption = 'Analyze'
ImageIndex = 146
ImageName = 'icons8-find-other'
Images = MainForm.VirtualImageListMain
TabOrder = 4
OnClick = btnAnalyzeClick
end
object grpOptions: TGroupBox
Left = 207
Top = 119
Width = 319
Height = 66
Anchors = [akLeft, akTop, akRight]
Caption = 'Options'
TabOrder = 5
object radioOptionsStructure: TCheckBox
Left = 88
Top = 16
Width = 97
Height = 17
Caption = 'Structure'
Checked = True
State = cbChecked
TabOrder = 0
end
object radioOptionsData: TCheckBox
Left = 88
Top = 39
Width = 97
Height = 17
Caption = 'Data'
Checked = True
State = cbChecked
TabOrder = 1
end
end
object treeDifferences: TVirtualStringTree
Left = 207
Top = 208
Width = 319
Height = 115
Anchors = [akLeft, akTop, akRight, akBottom]
Header.AutoSizeIndex = 0
Header.MainColumn = -1
Images = MainForm.VirtualImageListMain
TabOrder = 6
TreeOptions.MiscOptions = [toAcceptOLEDrop, toCheckSupport, toFullRepaintOnResize, toInitOnSave, toToggleOnDblClick, toWheelPanning, toEditOnClick]
TreeOptions.PaintOptions = [toShowButtons, toShowDropmark, toShowRoot, toShowTreeLines, toThemeAware, toUseBlendedImages, toGhostedIfUnfocused, toUseExplorerTheme, toHideTreeLinesIfThemed]
OnGetText = treeDifferencesGetText
OnGetImageIndex = treeDifferencesGetImageIndex
OnGetNodeDataSize = treeDifferencesGetNodeDataSize
OnInitChildren = treeDifferencesInitChildren
OnInitNode = treeDifferencesInitNode
Touch.InteractiveGestures = [igPan, igPressAndTap]
Touch.InteractiveGestureOptions = [igoPanSingleFingerHorizontal, igoPanSingleFingerVertical, igoPanInertia, igoPanGutter, igoParentPassthrough]
Columns = <>
end
end