forked from treejames/OneSQL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunParamForm.dfm
More file actions
131 lines (131 loc) · 3.31 KB
/
unParamForm.dfm
File metadata and controls
131 lines (131 loc) · 3.31 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
object paramForm: TparamForm
Left = 0
Top = 0
BorderWidth = 4
Caption = 'SQL Parameters'
ClientHeight = 319
ClientWidth = 567
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object cxParams: TcxGrid
Left = 0
Top = 0
Width = 567
Height = 284
Align = alClient
TabOrder = 0
LookAndFeel.NativeStyle = True
object tvParams: TcxGridTableView
Navigator.Buttons.CustomButtons = <>
DataController.Summary.DefaultGroupSummaryItems = <>
DataController.Summary.FooterSummaryItems = <>
DataController.Summary.SummaryGroups = <>
OptionsView.ColumnAutoWidth = True
OptionsView.GroupByBox = False
object tcActive: TcxGridColumn
Caption = 'Active?'
PropertiesClassName = 'TcxCheckBoxProperties'
Properties.ValueChecked = '1'
Properties.ValueUnchecked = '0'
HeaderAlignmentHorz = taCenter
MinWidth = 50
Options.Filtering = False
Options.GroupFooters = False
Options.Grouping = False
Options.HorzSizing = False
Options.Moving = False
Width = 50
end
object tcParam: TcxGridColumn
Caption = 'Param'
HeaderAlignmentHorz = taCenter
MinWidth = 150
Options.Editing = False
Options.Filtering = False
Options.GroupFooters = False
Options.Grouping = False
Options.HorzSizing = False
Options.Moving = False
SortIndex = 0
SortOrder = soAscending
Width = 150
end
object tcType: TcxGridColumn
Caption = 'Type'
PropertiesClassName = 'TcxComboBoxProperties'
Properties.Items.Strings = (
'Integer'
'Decimal'
'String'
'Substitution')
HeaderAlignmentHorz = taCenter
MinWidth = 104
Options.GroupFooters = False
Options.Grouping = False
Options.HorzSizing = False
Options.Moving = False
Width = 104
end
object tcValue: TcxGridColumn
Caption = 'Value'
HeaderAlignmentHorz = taCenter
Options.GroupFooters = False
Options.Grouping = False
Options.Moving = False
Width = 197
end
end
object cxParamsLevel1: TcxGridLevel
GridView = tvParams
end
end
object Panel1: TPanel
Left = 0
Top = 284
Width = 567
Height = 35
Align = alBottom
BevelOuter = bvNone
TabOrder = 1
DesignSize = (
567
35)
object buOK: TcxButton
Left = 492
Top = 6
Width = 75
Height = 25
Anchors = [akTop, akRight]
Caption = 'Execute'
Default = True
LookAndFeel.NativeStyle = True
ModalResult = 1
OptionsImage.ImageIndex = 0
OptionsImage.Images = dm.imListSmall
TabOrder = 0
end
object buCancel: TcxButton
Left = 411
Top = 6
Width = 75
Height = 25
Anchors = [akTop, akRight]
Cancel = True
Caption = 'Cancel'
LookAndFeel.NativeStyle = True
ModalResult = 2
OptionsImage.ImageIndex = 1
OptionsImage.Images = dm.imListSmall
TabOrder = 1
end
end
end