-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfrmInvoice.dfm
397 lines (396 loc) · 10 KB
/
frmInvoice.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
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
object frmInvoiceForm: TfrmInvoiceForm
Left = 0
Top = 0
Caption = 'Invoices'
ClientHeight = 427
ClientWidth = 973
Color = clBtnFace
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
FormStyle = fsMDIChild
OldCreateOrder = False
Position = poMainFormCenter
Visible = True
OnClose = FormClose
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 15
object spSplitter: TSplitter
Left = 425
Top = 0
Height = 427
ExplicitLeft = 424
ExplicitTop = 208
ExplicitHeight = 100
end
object gdInvoices: TDBGrid
Left = 0
Top = 0
Width = 425
Height = 427
Align = alLeft
DataSource = dsTable
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 = 'id'
Visible = False
end
item
Expanded = False
FieldName = 'encodedate'
Title.Caption = 'Encode Date'
Width = 96
Visible = True
end
item
Expanded = False
FieldName = 'transactdate'
Title.Caption = 'Transaction Date'
Width = 106
Visible = True
end
item
Expanded = False
FieldName = 'customername'
Title.Caption = 'Customer'
Width = 137
Visible = True
end
item
Expanded = False
FieldName = 'amount'
Title.Caption = 'Amount'
Visible = True
end
item
Expanded = False
FieldName = 'billingaddress'
Visible = False
end>
end
object pnlDetails: TPanel
Left = 428
Top = 0
Width = 545
Height = 427
Align = alClient
BevelOuter = bvNone
Caption = 'pnlDetails'
ShowCaption = False
TabOrder = 1
object EsLabel1: TEsLabel
Left = 24
Top = 49
Width = 105
Height = 17
Appearance = apNone
Caption = 'Transaction Date'
ColorScheme = csCustom
CustomSettings.HighlightDepth = 0
CustomSettings.HighlightDirection = sdNone
CustomSettings.ShadowDepth = 0
CustomSettings.ShadowDirection = sdNone
Font.Charset = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
ParentFont = False
end
object EsLabel2: TEsLabel
Left = 294
Top = 49
Width = 85
Height = 17
Appearance = apNone
Caption = 'Encode Date'
ColorScheme = csCustom
CustomSettings.HighlightDepth = 0
CustomSettings.HighlightDirection = sdNone
CustomSettings.ShadowDepth = 0
CustomSettings.ShadowDirection = sdNone
Font.Charset = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
ParentFont = False
end
object EsLabel3: TEsLabel
Left = 24
Top = 89
Width = 105
Height = 17
Appearance = apNone
Caption = 'Customer Name'
ColorScheme = csCustom
CustomSettings.HighlightDepth = 0
CustomSettings.HighlightDirection = sdNone
CustomSettings.ShadowDepth = 0
CustomSettings.ShadowDirection = sdNone
Font.Charset = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
ParentFont = False
end
object EsLabel4: TEsLabel
Left = 24
Top = 129
Width = 105
Height = 17
Appearance = apNone
Caption = 'Billing Address'
ColorScheme = csCustom
CustomSettings.HighlightDepth = 0
CustomSettings.HighlightDirection = sdNone
CustomSettings.ShadowDepth = 0
CustomSettings.ShadowDirection = sdNone
Font.Charset = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
ParentFont = False
end
object EsLabel5: TEsLabel
Left = 24
Top = 172
Width = 105
Height = 17
Appearance = apNone
Caption = 'Amount'
ColorScheme = csCustom
CustomSettings.HighlightDepth = 0
CustomSettings.HighlightDirection = sdNone
CustomSettings.ShadowDepth = 0
CustomSettings.ShadowDirection = sdNone
Font.Charset = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
ParentFont = False
end
object edtTransactDate: TEsDateEdit
Left = 135
Top = 46
Width = 137
Height = 23
Epoch = 2000
EsLabelInfo.OffsetX = 0
EsLabelInfo.OffsetY = 0
EsLabelInfo.Visible = False
PopupCalColors.ActiveDay = clRed
PopupCalColors.ColorScheme = csWindows
PopupCalColors.DayNames = clMaroon
PopupCalColors.Days = clBlack
PopupCalColors.InactiveDays = clGray
PopupCalColors.MonthAndYear = clBlue
PopupCalColors.Weekend = clRed
PopupCalFont.Charset = DEFAULT_CHARSET
PopupCalFont.Color = clWindowText
PopupCalFont.Height = -11
PopupCalFont.Name = 'Tahoma'
PopupCalFont.Style = []
ReadOnly = True
RequiredFields = [rfMonth, rfDay]
TabOrder = 0
TodayString = 'Tod'
OnGetDate = edtTransactDateGetDate
end
object edtEncodeDate: TEsDateEdit
Left = 384
Top = 46
Width = 137
Height = 23
Epoch = 2000
EsLabelInfo.OffsetX = 0
EsLabelInfo.OffsetY = 0
EsLabelInfo.Visible = False
PopupCalColors.ActiveDay = clRed
PopupCalColors.ColorScheme = csWindows
PopupCalColors.DayNames = clMaroon
PopupCalColors.Days = clBlack
PopupCalColors.InactiveDays = clGray
PopupCalColors.MonthAndYear = clBlue
PopupCalColors.Weekend = clRed
PopupCalFont.Charset = DEFAULT_CHARSET
PopupCalFont.Color = clWindowText
PopupCalFont.Height = -11
PopupCalFont.Name = 'Tahoma'
PopupCalFont.Style = []
ReadOnly = True
RequiredFields = [rfMonth, rfDay]
TabOrder = 1
TodayString = '/'
end
object edtAddress: TEdit
Left = 135
Top = 126
Width = 386
Height = 23
ReadOnly = True
TabOrder = 3
end
object edtCustomer: TEdit
Left = 135
Top = 86
Width = 386
Height = 23
ReadOnly = True
TabOrder = 2
end
object edtAmount: TEsNumberEdit
Left = 135
Top = 169
Width = 137
Height = 23
EsLabelInfo.OffsetX = 0
EsLabelInfo.OffsetY = 0
EsLabelInfo.Visible = False
PopupCalcColors.ColorScheme = csWindows
PopupCalcColors.DisabledMemoryButtons = clGray
PopupCalcColors.Display = clWindow
PopupCalcColors.DisplayText = clWindowText
PopupCalcColors.EditButtons = clMaroon
PopupCalcColors.FunctionButtons = clNavy
PopupCalcColors.MemoryButtons = clRed
PopupCalcColors.NumberButtons = clBlue
PopupCalcColors.OperatorButtons = clRed
PopupCalcFont.Charset = DEFAULT_CHARSET
PopupCalcFont.Color = clWindowText
PopupCalcFont.Height = -12
PopupCalcFont.Name = 'Segoe UI'
PopupCalcFont.Style = []
PopupCalcHeight = 200
PopupCalcWidth = 250
ReadOnly = True
TabOrder = 4
OnKeyPress = edtAmountKeyPress
end
object pnlBottom: TPanel
AlignWithMargins = True
Left = 3
Top = 389
Width = 539
Height = 35
Align = alBottom
BevelOuter = bvNone
ShowCaption = False
TabOrder = 5
object btnAdd: TButton
AlignWithMargins = True
Left = 330
Top = 3
Width = 100
Height = 29
Align = alRight
Caption = '&New'
TabOrder = 2
OnClick = btnAddClick
end
object btnCancel: TButton
AlignWithMargins = True
Left = 118
Top = 3
Width = 100
Height = 29
Align = alRight
Caption = '&Cancel'
TabOrder = 0
Visible = False
OnClick = btnCancelClick
end
object btnPost: TButton
AlignWithMargins = True
Left = 224
Top = 3
Width = 100
Height = 29
Align = alRight
Caption = '&Post'
TabOrder = 1
Visible = False
OnClick = btnPostClick
end
object btnEdit: TButton
AlignWithMargins = True
Left = 436
Top = 3
Width = 100
Height = 29
Align = alRight
Caption = '&Edit'
TabOrder = 3
OnClick = btnEditClick
end
end
end
object dbTable: TFDTable
AfterScroll = dbTableAfterScroll
OnNewRecord = dbTableNewRecord
IndexFieldNames = 'id'
Connection = conn
UpdateOptions.UpdateTableName = 'invoice'
TableName = 'invoice'
Left = 40
Top = 368
object dbTableid: TStringField
FieldName = 'id'
Origin = 'id'
Required = True
Size = 36
end
object dbTableencodedate: TSQLTimeStampField
FieldName = 'encodedate'
Origin = 'encodedate'
Required = True
end
object dbTabletransactdate: TDateTimeField
FieldName = 'transactdate'
Origin = 'transactdate'
Required = True
end
object dbTableamount: TCurrencyField
FieldName = 'amount'
Origin = 'amount'
end
object dbTablecustomername: TStringField
FieldName = 'customername'
Origin = 'customername'
Size = 255
end
object dbTablebillingaddress: TStringField
FieldName = 'billingaddress'
Origin = 'billingaddress'
Size = 255
end
end
object dsTable: TDataSource
DataSet = dbTable
OnStateChange = dsTableStateChange
Left = 104
Top = 368
end
object conn: TFDConnection
Params.Strings = (
'Database=c:\Users\Public\Delphi\embarcadero\essentials\Win32\Deb' +
'ug\sample.db'
'DriverID=SQLite')
Left = 168
Top = 368
end
end