ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/ibx/trunk/design/ibmodifysqleditor.lfm
(Generate patch)

Comparing ibx/trunk/design/ibmodifysqleditor.lfm (file contents):
Revision 5 by tony, Fri Feb 18 16:26:16 2011 UTC vs.
Revision 21 by tony, Thu Feb 26 10:33:34 2015 UTC

# Line 1 | Line 1
1   object IBModifySQLEditorForm: TIBModifySQLEditorForm
2 <  Left = 330
2 >  Left = 508
3    Height = 438
4 <  Top = 215
4 >  Top = 250
5    Width = 749
6  ActiveControl = TableNamesCombo
6    Caption = 'Modify SQL Editor'
7    ClientHeight = 438
8    ClientWidth = 749
9    OnShow = FormShow
10 <  LCLVersion = '0.9.28.2'
12 <  object Label1: TLabel
13 <    Left = 16
14 <    Height = 19
15 <    Top = 16
16 <    Width = 87
17 <    Caption = 'Table Name'
18 <    ParentColor = False
19 <  end
20 <  object Label2: TLabel
21 <    Left = 19
22 <    Height = 19
23 <    Top = 84
24 <    Width = 41
25 <    Caption = 'Fields'
26 <    ParentColor = False
27 <  end
10 >  LCLVersion = '1.2.6.0'
11    object Label3: TLabel
12      Left = 279
13 <    Height = 19
13 >    Height = 15
14      Top = 16
15 <    Width = 29
15 >    Width = 24
16      Caption = 'SQL'
17      ParentColor = False
18    end
36  object Label4: TLabel
37    Left = 23
38    Height = 19
39    Top = 285
40    Width = 93
41    Caption = 'Primary Keys'
42    ParentColor = False
43  end
19    object SQLText: TMemo
20      Left = 279
21      Height = 328
22      Top = 36
23      Width = 439
24 <    ScrollBars = ssVertical
24 >    Anchors = [akTop, akLeft, akRight, akBottom]
25 >    ScrollBars = ssAutoBoth
26      TabOrder = 0
27    end
28    object Button1: TButton
29      Left = 552
30      Height = 30
31 <    Top = 380
31 >    Top = 379
32      Width = 72
33 +    Anchors = [akRight, akBottom]
34      Caption = 'OK'
35      Default = True
36      ModalResult = 1
# Line 64 | Line 41 | object IBModifySQLEditorForm: TIBModifyS
41      Height = 30
42      Top = 380
43      Width = 72
44 +    Anchors = [akRight, akBottom]
45      Cancel = True
46      Caption = 'Cancel'
47      ModalResult = 2
48      TabOrder = 2
49    end
50 <  object TableNamesCombo: TComboBox
73 <    Left = 23
74 <    Height = 30
75 <    Top = 38
76 <    Width = 201
77 <    ItemHeight = 0
78 <    OnCloseUp = TableNamesComboCloseUp
79 <    ParentColor = True
80 <    TabOrder = 3
81 <  end
82 <  object FieldList: TListBox
83 <    Left = 21
84 <    Height = 170
85 <    Hint = 'Select Fields to include in Update Statement, or leave unselected to select all'
86 <    Top = 102
87 <    Width = 204
88 <    ItemHeight = 0
89 <    MultiSelect = True
90 <    OnDblClick = FieldListDblClick
91 <    ParentShowHint = False
92 <    ShowHint = True
93 <    TabOrder = 4
94 <    TopIndex = -1
95 <  end
96 <  object Button3: TButton
50 >  object GenerateBtn: TButton
51      Left = 280
52      Height = 30
53      Top = 380
54 <    Width = 112
55 <    AutoSize = True
54 >    Width = 101
55 >    Anchors = [akRight, akBottom]
56      Caption = 'Generate SQL'
57 <    OnClick = Button3Click
58 <    TabOrder = 5
57 >    OnClick = GenerateBtnClick
58 >    TabOrder = 3
59    end
60 <  object Button4: TButton
60 >  object TestBtn: TButton
61      Left = 416
62      Height = 30
63      Top = 380
64      Width = 66
65 +    Anchors = [akRight, akBottom]
66      Caption = 'Test'
67 <    OnClick = Button4Click
68 <    TabOrder = 6
67 >    OnClick = TestBtnClick
68 >    TabOrder = 4
69    end
70    object QuoteFields: TCheckBox
71      Left = 16
72      Height = 22
73 <    Top = 380
74 <    Width = 144
73 >    Top = 400
74 >    Width = 125
75      Caption = '&Quote Identifiers'
76 <    TabOrder = 7
76 >    TabOrder = 5
77 >  end
78 >  object GenerateParams: TCheckBox
79 >    Left = 16
80 >    Height = 22
81 >    Top = 376
82 >    Width = 171
83 >    Caption = 'Allow DSQL Placeholders'
84 >    TabOrder = 6
85    end
86 <  object PrimaryKeyList: TListBox
87 <    Left = 23
88 <    Height = 59
89 <    Top = 304
90 <    Width = 200
91 <    ItemHeight = 0
92 <    OnDblClick = PrimaryKeyListDblClick
93 <    TabOrder = 8
94 <    TopIndex = -1
86 >  object PageControl: TPageControl
87 >    Left = 18
88 >    Height = 346
89 >    Top = 18
90 >    Width = 238
91 >    ActivePage = ExecutePage
92 >    TabIndex = 1
93 >    TabOrder = 7
94 >    object ModifyPage: TTabSheet
95 >      Caption = 'Update'
96 >      ClientHeight = 313
97 >      ClientWidth = 232
98 >      OnShow = ModifyPageShow
99 >      object Label1: TLabel
100 >        Left = 8
101 >        Height = 15
102 >        Top = 8
103 >        Width = 69
104 >        Caption = 'Table Name'
105 >        ParentColor = False
106 >      end
107 >      object TableNamesCombo: TComboBox
108 >        Left = 8
109 >        Height = 27
110 >        Top = 22
111 >        Width = 201
112 >        AutoComplete = True
113 >        AutoCompleteText = [cbactEnabled, cbactEndOfLineComplete, cbactSearchAscending]
114 >        ItemHeight = 0
115 >        OnCloseUp = TableNamesComboCloseUp
116 >        TabOrder = 0
117 >      end
118 >      object Label2: TLabel
119 >        Left = 8
120 >        Height = 15
121 >        Top = 56
122 >        Width = 33
123 >        Caption = 'Fields'
124 >        ParentColor = False
125 >      end
126 >      object FieldList: TListBox
127 >        Left = 8
128 >        Height = 120
129 >        Hint = 'Select Fields to include in Update Statement, or leave unselected to select all'
130 >        Top = 72
131 >        Width = 200
132 >        ItemHeight = 0
133 >        MultiSelect = True
134 >        OnDblClick = FieldListDblClick
135 >        ParentShowHint = False
136 >        ScrollWidth = 198
137 >        ShowHint = True
138 >        TabOrder = 1
139 >        TopIndex = -1
140 >      end
141 >      object IncludePrimaryKeys: TCheckBox
142 >        Left = 8
143 >        Height = 22
144 >        Top = 200
145 >        Width = 221
146 >        Caption = 'Include Primary keys in Field List'
147 >        Checked = True
148 >        OnClick = TableNamesComboCloseUp
149 >        State = cbChecked
150 >        TabOrder = 2
151 >      end
152 >      object Label4: TLabel
153 >        Left = 8
154 >        Height = 15
155 >        Top = 229
156 >        Width = 77
157 >        Caption = 'Primary Keys'
158 >        ParentColor = False
159 >      end
160 >      object PrimaryKeyList: TListBox
161 >        Left = 8
162 >        Height = 59
163 >        Top = 248
164 >        Width = 200
165 >        ItemHeight = 0
166 >        OnDblClick = PrimaryKeyListDblClick
167 >        ScrollWidth = 198
168 >        TabOrder = 3
169 >        TopIndex = -1
170 >      end
171 >    end
172 >    object ExecutePage: TTabSheet
173 >      Caption = 'Execute'
174 >      ClientHeight = 313
175 >      ClientWidth = 232
176 >      OnShow = ExecutePageShow
177 >      object Label16: TLabel
178 >        Left = 7
179 >        Height = 15
180 >        Top = 8
181 >        Width = 100
182 >        Caption = 'Procedure Name'
183 >        ParentColor = False
184 >      end
185 >      object ProcedureNames: TComboBox
186 >        Left = 7
187 >        Height = 27
188 >        Top = 24
189 >        Width = 201
190 >        ItemHeight = 0
191 >        OnCloseUp = ProcedureNamesCloseUp
192 >        ParentColor = True
193 >        TabOrder = 0
194 >      end
195 >      object Label17: TLabel
196 >        Left = 7
197 >        Height = 15
198 >        Top = 56
199 >        Width = 104
200 >        Caption = 'Input Parameters'
201 >        ParentColor = False
202 >      end
203 >      object ProcInputList: TListBox
204 >        Left = 8
205 >        Height = 103
206 >        Top = 72
207 >        Width = 198
208 >        IntegralHeight = True
209 >        ItemHeight = 0
210 >        ScrollWidth = 196
211 >        TabOrder = 1
212 >        TopIndex = -1
213 >      end
214 >      object ProcOutputList: TListBox
215 >        Left = 7
216 >        Height = 80
217 >        Top = 200
218 >        Width = 198
219 >        IntegralHeight = True
220 >        ItemHeight = 0
221 >        ScrollWidth = 196
222 >        TabOrder = 2
223 >        TopIndex = -1
224 >      end
225 >      object Label18: TLabel
226 >        Left = 7
227 >        Height = 15
228 >        Top = 184
229 >        Width = 114
230 >        Caption = 'Output Parameters'
231 >        ParentColor = False
232 >      end
233 >      object ExecuteOnlyIndicator: TLabel
234 >        Left = 10
235 >        Height = 15
236 >        Top = 293
237 >        Width = 89
238 >        Caption = 'Execute Only'
239 >        Font.Style = [fsBold]
240 >        ParentColor = False
241 >        ParentFont = False
242 >        Visible = False
243 >      end
244 >    end
245 >  end
246 >  object IBTransaction1: TIBTransaction
247 >    Active = False
248 >    left = 209
249 >    top = 388
250    end
251   end

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines