-
Notifications
You must be signed in to change notification settings - Fork 0
/
ULComprador.dfm
177 lines (177 loc) · 4.23 KB
/
ULComprador.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
inherited frmLComprador: TfrmLComprador
Caption = 'Listagem de Cadastro de Clientes'
ExplicitWidth = 755
ExplicitHeight = 527
PixelsPerInch = 96
TextHeight = 13
inherited Panel1: TPanel
inherited Panel2: TPanel
inherited GroupBox1: TGroupBox
object Label1: TLabel [0]
Left = 8
Top = 22
Width = 41
Height = 13
Caption = 'Localizar'
end
object Label2: TLabel [1]
Left = 373
Top = 22
Width = 33
Height = 13
Caption = 'Campo'
end
inherited btEditar: TPngBitBtn
OnClick = btEditarClick
end
object txtLocalizar: TEdit
Left = 7
Top = 38
Width = 362
Height = 21
TabOrder = 2
end
object txtCampo: TComboBox
Left = 373
Top = 38
Width = 129
Height = 21
Style = csDropDownList
ItemIndex = 1
TabOrder = 3
Text = 'Nome do Cliente'
Items.Strings = (
'C'#243'digo'
'Nome do Cliente')
end
end
inherited GroupBox2: TGroupBox
inherited grdDados: TDBGrid
OnDblClick = grdDadosDblClick
OnKeyDown = grdDadosKeyDown
Columns = <
item
Expanded = False
FieldName = 'COD_COMP'
Visible = True
end
item
Expanded = False
FieldName = 'DAT_CAD'
Visible = True
end
item
Expanded = False
FieldName = 'NOME'
Visible = True
end
item
Expanded = False
FieldName = 'APELIDO'
Visible = False
end
item
Expanded = False
FieldName = 'CPF_CNPJ'
Visible = False
end
item
Expanded = False
FieldName = 'RG_IE'
Visible = False
end
item
Expanded = False
FieldName = 'ENDERECO'
Visible = True
end
item
Expanded = False
FieldName = 'BAIRRO'
Visible = True
end
item
Expanded = False
FieldName = 'CIDADE'
Visible = True
end
item
Expanded = False
FieldName = 'UF'
Visible = False
end
item
Expanded = False
FieldName = 'CEP'
Visible = False
end
item
Expanded = False
FieldName = 'TELEFONE'
Visible = False
end>
end
end
end
end
inherited cdsTab: TClientDataSet
object cdsTabCOD_COMP: TIntegerField
DisplayLabel = 'C'#243'digo'
FieldName = 'COD_COMP'
Required = True
end
object cdsTabDAT_CAD: TDateField
DisplayLabel = 'Data Cad.'
FieldName = 'DAT_CAD'
end
object cdsTabNOME: TStringField
DisplayLabel = 'Nome do Comprador'
FieldName = 'NOME'
Size = 100
end
object cdsTabAPELIDO: TStringField
FieldName = 'APELIDO'
Size = 50
end
object cdsTabCPF_CNPJ: TStringField
FieldName = 'CPF_CNPJ'
Size = 15
end
object cdsTabRG_IE: TStringField
FieldName = 'RG_IE'
Size = 15
end
object cdsTabENDERECO: TStringField
DisplayLabel = 'Endere'#231'o'
FieldName = 'ENDERECO'
Size = 100
end
object cdsTabBAIRRO: TStringField
DisplayLabel = 'Bairro'
FieldName = 'BAIRRO'
Size = 80
end
object cdsTabCIDADE: TStringField
DisplayLabel = 'Cidade'
FieldName = 'CIDADE'
Size = 50
end
object cdsTabUF: TStringField
FieldName = 'UF'
Size = 2
end
object cdsTabCEP: TStringField
FieldName = 'CEP'
Size = 13
end
object cdsTabTELEFONE: TStringField
FieldName = 'TELEFONE'
Size = 15
end
end
inherited sqlTab: TSQLQuery
MaxBlobSize = 1
SQL.Strings = (
'SELECT * FROM COMPRADOR')
end
end