-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunPedido.dfm
171 lines (171 loc) · 3.62 KB
/
unPedido.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
object frmPedido: TfrmPedido
Left = 0
Top = 0
Caption = 'Inserir Produto'
ClientHeight = 209
ClientWidth = 360
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object GroupBox2: TGroupBox
Left = 0
Top = 0
Width = 360
Height = 209
Align = alClient
TabOrder = 0
ExplicitLeft = 8
ExplicitWidth = 336
ExplicitHeight = 256
object Label2: TLabel
AlignWithMargins = True
Left = 12
Top = 18
Width = 336
Height = 13
Margins.Left = 10
Margins.Right = 10
Margins.Bottom = 0
Align = alTop
Caption = 'Produto'
ExplicitWidth = 38
end
object Label3: TLabel
AlignWithMargins = True
Left = 12
Top = 86
Width = 336
Height = 13
Margins.Left = 10
Margins.Top = 0
Margins.Right = 10
Margins.Bottom = 0
Align = alTop
Caption = 'Quantidade'
ExplicitTop = 55
ExplicitWidth = 56
end
object Label6: TLabel
AlignWithMargins = True
Left = 12
Top = 123
Width = 336
Height = 13
Margins.Left = 10
Margins.Top = 0
Margins.Right = 10
Margins.Bottom = 0
Align = alTop
Caption = 'Valor'
ExplicitTop = 95
ExplicitWidth = 24
end
object Label7: TLabel
AlignWithMargins = True
Left = 12
Top = 52
Width = 336
Height = 13
Margins.Left = 10
Margins.Top = 0
Margins.Right = 10
Margins.Bottom = 0
Align = alTop
Caption = 'Valor Unit'#225'rio'
ExplicitLeft = 1
ExplicitWidth = 332
end
object DBComboBox1: TDBComboBox
AlignWithMargins = True
Left = 12
Top = 31
Width = 336
Height = 21
Margins.Left = 10
Margins.Top = 0
Margins.Right = 10
Margins.Bottom = 0
Align = alTop
DataField = 'descricao'
DataSource = dmodule.dsProdutos
TabOrder = 0
ExplicitLeft = 146
ExplicitTop = 120
ExplicitWidth = 145
end
object btnAdicionar: TButton
AlignWithMargins = True
Left = 12
Top = 170
Width = 336
Height = 25
Margins.Left = 10
Margins.Top = 10
Margins.Right = 10
Align = alTop
Caption = 'btnAdicionar'
TabOrder = 1
OnClick = btnAdicionarClick
ExplicitLeft = 128
ExplicitTop = 152
ExplicitWidth = 75
end
object edtValor: TEdit
AlignWithMargins = True
Left = 12
Top = 136
Width = 336
Height = 21
Margins.Left = 10
Margins.Top = 0
Margins.Right = 10
Align = alTop
TabOrder = 2
ExplicitLeft = 13
ExplicitTop = 84
ExplicitWidth = 312
end
object edtQtde: TEdit
AlignWithMargins = True
Left = 12
Top = 99
Width = 336
Height = 21
Margins.Left = 10
Margins.Top = 0
Margins.Right = 10
Align = alTop
TabOrder = 3
Text = '1'
OnExit = edtQtdeExit
ExplicitLeft = 20
ExplicitTop = 76
ExplicitWidth = 312
end
object edtValorUnitario: TDBEdit
AlignWithMargins = True
Left = 12
Top = 65
Width = 336
Height = 21
Margins.Left = 10
Margins.Top = 0
Margins.Right = 10
Margins.Bottom = 0
Align = alTop
DataField = 'preco'
DataSource = dmodule.dsProdutos
TabOrder = 4
ExplicitLeft = 0
ExplicitTop = 60
ExplicitWidth = 312
end
end
end