-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathDataGrabber.DataInspector.dfm
52 lines (52 loc) · 1.07 KB
/
DataGrabber.DataInspector.dfm
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
object frmDataInspector: TfrmDataInspector
Left = 0
Top = 0
BorderStyle = bsSizeToolWin
Caption = 'Datainspector'
ClientHeight = 225
ClientWidth = 235
Color = clBtnFace
DoubleBuffered = True
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Segoe UI'
Font.Style = []
Position = poMainFormCenter
OnShow = FormShow
TextHeight = 13
object pnlMain: TPanel
Left = 0
Top = 0
Width = 235
Height = 225
Align = alClient
BevelOuter = bvNone
TabOrder = 0
ExplicitWidth = 229
ExplicitHeight = 208
end
object dscMain: TDataSource
OnDataChange = dscMainDataChange
Left = 16
Top = 8
end
object aclMain: TActionList
Left = 128
Top = 8
object actHideEmptyFields: TAction
AutoCheck = True
Caption = 'Hide empty fields'
Checked = True
OnExecute = actHideEmptyFieldsExecute
end
end
object ppmMain: TPopupMenu
Left = 72
Top = 8
object mniHideEmptyFields: TMenuItem
Action = actHideEmptyFields
AutoCheck = True
end
end
end