-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEditProduct_u.dfm
154 lines (154 loc) · 3.7 KB
/
EditProduct_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
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
object frmEditProduct: TfrmEditProduct
Left = 0
Top = 0
Caption = 'POS 2.0 Edit Product'
ClientHeight = 281
ClientWidth = 524
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Scaled = False
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object lbledtBarcode: TLabeledEdit
Left = 16
Top = 40
Width = 225
Height = 33
EditLabel.Width = 155
EditLabel.Height = 25
EditLabel.Caption = 'Product Barcode'
EditLabel.Font.Charset = DEFAULT_CHARSET
EditLabel.Font.Color = clWindowText
EditLabel.Font.Height = 25
EditLabel.Font.Name = 'Tahoma'
EditLabel.Font.Style = []
EditLabel.ParentFont = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = 25
Font.Name = 'Tahoma'
Font.Style = []
NumbersOnly = True
ParentFont = False
ReadOnly = True
TabOrder = 0
end
object lbledtProductSell: TLabeledEdit
Left = 280
Top = 120
Width = 225
Height = 33
EditLabel.Width = 165
EditLabel.Height = 25
EditLabel.Caption = 'Product Sell Price'
EditLabel.Font.Charset = DEFAULT_CHARSET
EditLabel.Font.Color = clWindowText
EditLabel.Font.Height = 25
EditLabel.Font.Name = 'Tahoma'
EditLabel.Font.Style = []
EditLabel.ParentFont = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = 25
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 1
end
object lbledtProductCost: TLabeledEdit
Left = 16
Top = 120
Width = 225
Height = 33
EditLabel.Width = 172
EditLabel.Height = 25
EditLabel.Caption = 'Product Cost Price'
EditLabel.Font.Charset = DEFAULT_CHARSET
EditLabel.Font.Color = clWindowText
EditLabel.Font.Height = 25
EditLabel.Font.Name = 'Tahoma'
EditLabel.Font.Style = []
EditLabel.ParentFont = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = 25
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 2
end
object lbledtProductName: TLabeledEdit
Left = 280
Top = 40
Width = 225
Height = 33
EditLabel.Width = 133
EditLabel.Height = 25
EditLabel.Caption = 'Product Name'
EditLabel.Font.Charset = DEFAULT_CHARSET
EditLabel.Font.Color = clWindowText
EditLabel.Font.Height = 25
EditLabel.Font.Name = 'Tahoma'
EditLabel.Font.Style = []
EditLabel.ParentFont = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = 25
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 3
end
object btnCancel: TBitBtn
Left = 280
Top = 175
Width = 225
Height = 65
Caption = 'Cancel'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = 30
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 4
OnClick = btnCancelClick
end
object btnUpdateProduct: TBitBtn
Left = 16
Top = 175
Width = 225
Height = 65
Caption = 'Update Product'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = 30
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 5
OnClick = btnUpdateProductClick
end
object tblEditProduct: TADOTable
Connection = DataModule1.conMain
CursorType = ctStatic
TableName = 'Stock'
Left = 248
Top = 176
end
object qryEditProduct: TADOQuery
Connection = DataModule1.conMain
CursorType = ctStatic
Parameters = <>
SQL.Strings = (
'Select * From Stock')
Left = 248
Top = 224
end
end