This repository was archived by the owner on Dec 12, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathxdataedit.dfm
More file actions
518 lines (518 loc) · 11.9 KB
/
xdataedit.dfm
File metadata and controls
518 lines (518 loc) · 11.9 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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
object Form2: TForm2
Left = 0
Top = 0
Caption = 'QIF Editor'
ClientHeight = 392
ClientWidth = 983
Color = clBtnFace
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
Menu = menuMain
OldCreateOrder = False
Position = poScreenCenter
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnDestroy = FormDestroy
PixelsPerInch = 96
TextHeight = 15
object Splitter1: TSplitter
Left = 617
Top = 0
Height = 373
ExplicitLeft = 384
ExplicitTop = 48
ExplicitHeight = 100
end
object gridList: TDBGrid
Left = 0
Top = 0
Width = 617
Height = 373
Align = alLeft
DataSource = dsList
Options = [dgTitles, dgIndicator, dgColumnResize, dgColLines, dgRowLines, dgTabs, dgRowSelect, dgConfirmDelete, dgCancelOnExit, dgTitleClick, dgTitleHotTrack]
TabOrder = 0
TitleFont.Charset = ANSI_CHARSET
TitleFont.Color = clWindowText
TitleFont.Height = -12
TitleFont.Name = 'Segoe UI'
TitleFont.Style = []
Columns = <
item
Expanded = False
FieldName = 'date'
ReadOnly = True
Title.Alignment = taCenter
Title.Caption = 'Date (D)'
Visible = True
end
item
Expanded = False
FieldName = 'ufield'
ReadOnly = True
Title.Alignment = taCenter
Title.Caption = 'Debit (U)'
Visible = True
end
item
Expanded = False
FieldName = 'tfield'
ReadOnly = True
Title.Alignment = taCenter
Title.Caption = 'Credit (T)'
Visible = True
end
item
Expanded = False
FieldName = 'type'
ReadOnly = True
Title.Alignment = taCenter
Title.Caption = 'Type'
Width = 85
Visible = True
end
item
Expanded = False
FieldName = 'pfield'
ReadOnly = True
Title.Alignment = taCenter
Title.Caption = 'Transaction (P)'
Width = 100
Visible = True
end
item
Expanded = False
FieldName = 'mfield'
ReadOnly = True
Title.Alignment = taCenter
Title.Caption = 'Comment (M)'
Visible = True
end>
end
object pnlDetail: TPanel
Left = 620
Top = 0
Width = 363
Height = 373
Align = alClient
BevelOuter = bvNone
ShowCaption = False
TabOrder = 1
object pnlDField: TPanel
AlignWithMargins = True
Left = 3
Top = 10
Width = 357
Height = 25
Margins.Top = 10
Align = alTop
BevelOuter = bvNone
ShowCaption = False
TabOrder = 0
object lblDField: TLabel
AlignWithMargins = True
Left = 3
Top = 3
Width = 80
Height = 19
Align = alLeft
Alignment = taRightJustify
AutoSize = False
Caption = 'Date (&D):'
FocusControl = edtDField
end
object Label1: TLabel
AlignWithMargins = True
Left = 272
Top = 3
Width = 82
Height = 19
Align = alRight
AutoSize = False
Caption = 'MM/DD/YYYY'
end
object edtDField: TDBEdit
AlignWithMargins = True
Left = 89
Top = 0
Width = 177
Height = 25
Hint = 'MM/DD/YYYY'
Margins.Top = 0
Margins.Bottom = 0
Align = alClient
DataField = 'date'
DataSource = dsList
ParentShowHint = False
ShowHint = True
TabOrder = 0
ExplicitHeight = 23
end
end
object pnlUField: TPanel
AlignWithMargins = True
Left = 3
Top = 48
Width = 357
Height = 25
Margins.Top = 10
Align = alTop
BevelOuter = bvNone
ShowCaption = False
TabOrder = 1
object lblUField: TLabel
AlignWithMargins = True
Left = 3
Top = 3
Width = 80
Height = 19
Align = alLeft
Alignment = taRightJustify
AutoSize = False
Caption = 'Debit (&U):'
FocusControl = edtUField
end
object edtUField: TDBEdit
AlignWithMargins = True
Left = 89
Top = 0
Width = 265
Height = 25
Margins.Top = 0
Margins.Bottom = 0
Align = alClient
DataField = 'ufield'
DataSource = dsList
TabOrder = 0
ExplicitHeight = 23
end
end
object pnlTField: TPanel
AlignWithMargins = True
Left = 3
Top = 86
Width = 357
Height = 25
Margins.Top = 10
Align = alTop
BevelOuter = bvNone
ShowCaption = False
TabOrder = 2
object lblTField: TLabel
AlignWithMargins = True
Left = 3
Top = 3
Width = 80
Height = 19
Align = alLeft
Alignment = taRightJustify
AutoSize = False
Caption = 'Credit (&T):'
FocusControl = edtTField
end
object edtTField: TDBEdit
AlignWithMargins = True
Left = 89
Top = 0
Width = 265
Height = 25
Margins.Top = 0
Margins.Bottom = 0
Align = alClient
DataField = 'tfield'
DataSource = dsList
TabOrder = 0
ExplicitHeight = 23
end
end
object pnlType: TPanel
AlignWithMargins = True
Left = 3
Top = 124
Width = 357
Height = 25
Margins.Top = 10
Align = alTop
BevelOuter = bvNone
ShowCaption = False
TabOrder = 3
object lblType: TLabel
AlignWithMargins = True
Left = 3
Top = 3
Width = 80
Height = 19
Align = alLeft
Alignment = taRightJustify
AutoSize = False
Caption = 'T&ype:'
FocusControl = edtType
end
object edtType: TDBEdit
AlignWithMargins = True
Left = 89
Top = 0
Width = 265
Height = 25
Margins.Top = 0
Margins.Bottom = 0
Align = alClient
DataField = 'type'
DataSource = dsList
TabOrder = 0
ExplicitHeight = 23
end
end
object pnlTransaction: TPanel
AlignWithMargins = True
Left = 3
Top = 162
Width = 357
Height = 25
Margins.Top = 10
Align = alTop
BevelOuter = bvNone
ShowCaption = False
TabOrder = 4
object lblTransaction: TLabel
AlignWithMargins = True
Left = 3
Top = 3
Width = 80
Height = 19
Align = alLeft
Alignment = taRightJustify
AutoSize = False
Caption = 'Transaction (&P):'
FocusControl = edtPField
ExplicitLeft = 0
ExplicitTop = 6
end
object edtPField: TDBEdit
AlignWithMargins = True
Left = 89
Top = 0
Width = 265
Height = 25
Margins.Top = 0
Margins.Bottom = 0
Align = alClient
DataField = 'pfield'
DataSource = dsList
TabOrder = 0
ExplicitHeight = 23
end
end
object pnlComment: TPanel
AlignWithMargins = True
Left = 3
Top = 200
Width = 357
Height = 89
Margins.Top = 10
Align = alTop
BevelOuter = bvNone
ShowCaption = False
TabOrder = 5
object lblComment: TLabel
AlignWithMargins = True
Left = 3
Top = 3
Width = 80
Height = 83
Align = alLeft
Alignment = taRightJustify
AutoSize = False
Caption = 'Comment (&M):'
FocusControl = edtMField
ExplicitLeft = 0
ExplicitTop = 6
ExplicitHeight = 19
end
object edtMField: TDBMemo
AlignWithMargins = True
Left = 89
Top = 0
Width = 265
Height = 89
Margins.Top = 0
Margins.Bottom = 0
Align = alClient
DataField = 'mfield'
DataSource = dsList
MaxLength = 250
TabOrder = 0
end
end
object navList: TDBNavigator
AlignWithMargins = True
Left = 3
Top = 345
Width = 357
Height = 25
DataSource = dsList
Align = alBottom
TabOrder = 6
TabStop = True
end
end
object sbrStatus: TStatusBar
Left = 0
Top = 373
Width = 983
Height = 19
Panels = <
item
Width = 200
end>
end
object menuMain: TMainMenu
Left = 64
Top = 64
object mnuFile: TMenuItem
Caption = '&File'
object mnuFileNew: TMenuItem
Caption = '&New...'
ShortCut = 16462
OnClick = mnuFileNewClick
end
object mnuFileOpen: TMenuItem
Caption = '&Open...'
ShortCut = 16463
OnClick = mnuFileOpenClick
end
object mnuFileSave: TMenuItem
Caption = '&Save...'
ShortCut = 16467
OnClick = mnuFileSaveClick
end
object mnuFileSaveAs: TMenuItem
Caption = 'Save &As...'
ShortCut = 24659
OnClick = mnuFileSaveAsClick
end
object mnuFileClear: TMenuItem
Caption = 'Clea&r'
ShortCut = 16466
OnClick = mnuFileClearClick
end
object N1: TMenuItem
Caption = '-'
end
object mnuFileExit: TMenuItem
Caption = 'E&xit'
OnClick = mnuFileExitClick
end
end
object mnuEdit: TMenuItem
Caption = '&Edit'
object Undo1: TMenuItem
Caption = '&Undo'
ShortCut = 16474
OnClick = Undo1Click
end
object mniN2: TMenuItem
Caption = '-'
end
object Cut1: TMenuItem
Caption = 'Cu&t'
ShortCut = 16472
OnClick = Cut1Click
end
object Copy1: TMenuItem
Caption = '&Copy'
ShortCut = 16451
OnClick = Copy1Click
end
object Paste1: TMenuItem
Caption = '&Paste'
ShortCut = 16470
OnClick = Paste1Click
end
object mniN3: TMenuItem
Caption = '-'
end
object SelectAll1: TMenuItem
Caption = 'Select &All'
ShortCut = 16449
OnClick = SelectAll1Click
end
end
object CSV1: TMenuItem
Caption = 'CS&V'
object ImportfromCSV1: TMenuItem
Caption = 'Import from CSV...'
OnClick = ImportfromCSV1Click
end
object ExporttoCSV1: TMenuItem
Caption = 'Export to CSV...'
OnClick = ExporttoCSV1Click
end
end
object Help1: TMenuItem
Caption = '&Help'
object About1: TMenuItem
Caption = '&About...'
OnClick = About1Click
end
end
end
object dsList: TDataSource
DataSet = dbList
Left = 64
Top = 192
end
object dlgOpen: TOpenDialog
DefaultExt = '.qif'
Filter = 'QIF File (*.qif)|*.qif|All Files (*.*)|*.*'
Options = [ofHideReadOnly, ofFileMustExist, ofEnableSizing]
Left = 64
Top = 274
end
object dlgSave: TSaveDialog
DefaultExt = '.qif'
Filter = 'QIF File (*.qif)|*.qif|All Files (*.*)|*.*'
Options = [ofEnableSizing]
Left = 64
Top = 318
end
object dbList: TXDBData
AfterDelete = dbListAfterDelete
AfterPost = dbListAfterPost
AfterScroll = dbListAfterScroll
OnCountRecords = dbListCountRecords
OnDeleteRecord = dbListDeleteRecord
OnGetFieldData = dbListGetFieldData
OnInsertRecord = dbListInsertRecord
OnNewRecord = dbListNewRecord
OnSetFieldData = dbListSetFieldData
Left = 64
Top = 148
object dbListdate: TDateField
FieldName = 'date'
DisplayFormat = 'MM/dd/yyyy'
EditMask = '!99/99/0000;1;_'
end
object dbListufield: TCurrencyField
FieldName = 'ufield'
end
object dbListtfield: TCurrencyField
FieldName = 'tfield'
end
object dbListtype: TStringField
FieldName = 'type'
Size = 50
end
object dbListpfield: TStringField
FieldName = 'pfield'
Size = 50
end
object dbListmfield: TStringField
FieldName = 'mfield'
Size = 250
end
end
end