-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathuCadastroProdutos.dfm
117 lines (117 loc) · 2.66 KB
/
uCadastroProdutos.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
inherited fmCadastroProdutos: TfmCadastroProdutos
Caption = 'Cadastro de Produtos'
PixelsPerInch = 96
TextHeight = 19
inherited pcPrincipal: TPageControl
inherited tsDados: TTabSheet
ExplicitLeft = 0
ExplicitTop = 0
ExplicitWidth = 0
ExplicitHeight = 0
end
inherited tsEdit: TTabSheet
inherited pnEdits: TPanel
object Label1: TLabel
Left = 0
Top = 8
Width = 15
Height = 19
Caption = 'Id'
FocusControl = edId
end
object Label2: TLabel
Left = 0
Top = 54
Width = 42
Height = 19
Caption = 'Nome'
FocusControl = edNome
end
object Label3: TLabel
Left = 0
Top = 100
Width = 39
Height = 19
Caption = 'Pre'#231'o'
FocusControl = edPreco
end
object Label4: TLabel
Left = 0
Top = 146
Width = 114
Height = 19
Caption = 'C'#243'digo de Barra'
FocusControl = edBarra
end
object edId: TDBEdit
Left = 0
Top = 27
Width = 134
Height = 27
DataField = 'ID'
DataSource = dsDados
TabOrder = 0
end
object edNome: TDBEdit
Left = 0
Top = 73
Width = 553
Height = 27
DataField = 'NOME'
DataSource = dsDados
TabOrder = 1
end
object edPreco: TDBEdit
Left = 0
Top = 119
Width = 134
Height = 27
DataField = 'PRECO'
DataSource = dsDados
TabOrder = 2
end
object edBarra: TDBEdit
Left = 0
Top = 165
Width = 489
Height = 27
DataField = 'BARRA'
DataSource = dsDados
TabOrder = 3
end
end
end
end
inherited qrDados: TFDQuery
SQL.Strings = (
'SELECT * FROM PRODUTOS')
object qrDadosID: TFDAutoIncField
DisplayLabel = 'Id'
FieldName = 'ID'
ReadOnly = True
end
object qrDadosNOME: TStringField
DisplayLabel = 'Nome'
FieldName = 'NOME'
Origin = 'NOME'
Required = True
Size = 50
end
object qrDadosPRECO: TBCDField
DefaultExpression = '0'
DisplayLabel = 'Pre'#231'o'
FieldName = 'PRECO'
Origin = 'PRECO'
Required = True
DisplayFormat = ',0.00'
Precision = 18
Size = 2
end
object qrDadosBARRA: TStringField
DisplayLabel = 'Barra'
FieldName = 'BARRA'
Origin = 'BARRA'
Size = 30
end
end
end