-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathULVeiculos.dfm
201 lines (201 loc) · 4.9 KB
/
ULVeiculos.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
inherited frmLVeiculos: TfrmLVeiculos
Caption = 'Listagem de Cadastros de Ve'#237'culos'
ExplicitWidth = 755
ExplicitHeight = 527
PixelsPerInch = 96
TextHeight = 13
inherited Panel1: TPanel
inherited Panel2: TPanel
inherited GroupBox1: TGroupBox
Top = 7
ExplicitTop = 7
object Label1: TLabel [0]
Left = 8
Top = 13
Width = 41
Height = 13
Caption = 'Localizar'
end
object Label2: TLabel [1]
Left = 373
Top = 13
Width = 33
Height = 13
Caption = 'Campo'
end
inherited btEditar: TPngBitBtn
OnClick = btEditarClick
end
object txtLocalizar: TEdit
Left = 7
Top = 29
Width = 362
Height = 21
TabOrder = 2
end
object txtCampo: TComboBox
Left = 373
Top = 29
Width = 129
Height = 21
Style = csDropDownList
ItemIndex = 2
TabOrder = 3
Text = 'Placa'
Items.Strings = (
'C'#243'digo'
'Nome do Ve'#237'culo'
'Placa')
end
end
inherited GroupBox2: TGroupBox
inherited grdDados: TDBGrid
Left = 12
Top = 19
Columns = <
item
Expanded = False
FieldName = 'COD_VEICULO'
Title.Caption = 'C'#243'digo'
Visible = True
end
item
Expanded = False
FieldName = 'DAT_CAD'
Title.Caption = 'Data do Cadastro'
Visible = True
end
item
Expanded = False
FieldName = 'DESCRICAO'
Title.Caption = 'Nome do Ve'#237'culo'
Width = 205
Visible = True
end
item
Expanded = False
FieldName = 'MODELO'
Title.Caption = 'Modelo'
Width = 88
Visible = True
end
item
Expanded = False
FieldName = 'ANO'
Title.Caption = 'Ano'
Visible = True
end
item
Expanded = False
FieldName = 'PLACA'
Title.Caption = 'Placa'
Width = 64
Visible = True
end
item
Expanded = False
FieldName = 'MARCA'
Visible = False
end
item
Expanded = False
FieldName = 'TIPO'
Visible = False
end
item
Expanded = False
FieldName = 'CHASSI'
Visible = False
end
item
Expanded = False
FieldName = 'RENAVAN'
Visible = False
end
item
Expanded = False
FieldName = 'COR'
Visible = False
end
item
Expanded = False
FieldName = 'UNID_ESTOQUE'
Title.Caption = 'Estoque'
Visible = False
end
item
Expanded = False
FieldName = 'PRC_VENDA'
Title.Caption = 'Prc. Venda'
Visible = True
end
item
Expanded = False
FieldName = 'PRC_COMPRA'
Visible = False
end>
end
end
end
end
inherited cdsTab: TClientDataSet
object cdsTabCOD_VEICULO: TIntegerField
FieldName = 'COD_VEICULO'
Required = True
end
object cdsTabDAT_CAD: TDateField
FieldName = 'DAT_CAD'
end
object cdsTabDESCRICAO: TStringField
FieldName = 'DESCRICAO'
Size = 100
end
object cdsTabTIPO: TStringField
FieldName = 'TIPO'
Size = 1
end
object cdsTabPLACA: TStringField
FieldName = 'PLACA'
Size = 50
end
object cdsTabMARCA: TStringField
FieldName = 'MARCA'
Size = 100
end
object cdsTabMODELO: TStringField
FieldName = 'MODELO'
Size = 100
end
object cdsTabANO: TStringField
FieldName = 'ANO'
Size = 10
end
object cdsTabCHASSI: TStringField
FieldName = 'CHASSI'
Size = 100
end
object cdsTabRENAVAN: TStringField
FieldName = 'RENAVAN'
Size = 100
end
object cdsTabCOR: TStringField
FieldName = 'COR'
Size = 100
end
object cdsTabPRC_VENDA: TSingleField
FieldName = 'PRC_VENDA'
currency = True
end
object cdsTabPRC_COMPRA: TSingleField
FieldName = 'PRC_COMPRA'
currency = True
end
object cdsTabUNID_ESTOQUE: TSingleField
FieldName = 'UNID_ESTOQUE'
end
end
inherited sqlTab: TSQLQuery
SQL.Strings = (
'SELECT * FROM VEICULOS')
end
end