-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGiftCard_u.dfm
115 lines (115 loc) · 2.47 KB
/
GiftCard_u.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
object frmGiftCards: TfrmGiftCards
Left = 0
Top = 0
Caption = 'Gift Cards'
ClientHeight = 492
ClientWidth = 1017
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Scaled = False
OnActivate = FormActivate
OnClose = FormClose
OnCreate = FormCreate
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object dbgrdGiftCardList: TDBGrid
Left = 8
Top = 8
Width = 689
Height = 473
DataSource = dsGiftCard
TabOrder = 0
TitleFont.Charset = DEFAULT_CHARSET
TitleFont.Color = clWindowText
TitleFont.Height = -11
TitleFont.Name = 'Tahoma'
TitleFont.Style = []
end
object btnNewCard: TBitBtn
Left = 712
Top = 8
Width = 297
Height = 41
Caption = 'Add New Card'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = 30
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 1
OnClick = btnNewCardClick
end
object btnEditCard: TBitBtn
Left = 712
Top = 63
Width = 297
Height = 41
Caption = 'Edit Gift Card'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = 30
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 2
OnClick = btnEditCardClick
end
object btnReloadCard: TBitBtn
Left = 712
Top = 119
Width = 297
Height = 41
Caption = 'Reload Card'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = 30
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 3
OnClick = btnReloadCardClick
end
object btnGenerateReport: TBitBtn
Left = 712
Top = 175
Width = 297
Height = 41
Caption = 'Generate Report'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = 30
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 4
OnClick = btnGenerateReportClick
end
object dsGiftCard: TDataSource
DataSet = qryGiftCard
Left = 768
Top = 432
end
object qryGiftCard: TADOQuery
Connection = DataModule1.conMain
CursorType = ctStatic
Parameters = <>
SQL.Strings = (
'SELECT * FROM GiftCard')
Left = 824
Top = 432
end
object tblCardBal: TADOTable
Connection = DataModule1.conMain
CursorType = ctStatic
TableName = 'GiftCard'
Left = 896
Top = 432
end
end