-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUDeficiencia.dfm
More file actions
121 lines (120 loc) · 2.98 KB
/
Copy pathUDeficiencia.dfm
File metadata and controls
121 lines (120 loc) · 2.98 KB
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
inherited frmDeficiencia: TfrmDeficiencia
Caption = 'Cadastro de Defici'#234'ncias'
ExplicitWidth = 638
ExplicitHeight = 544
PixelsPerInch = 96
TextHeight = 13
inherited Panel1: TPanel
inherited Panel2: TPanel
inherited Panel3: TPanel
inherited Label1: TLabel
Width = 225
Caption = 'Formul'#225'rio usado para cadastro de defici'#234'ncias'
ExplicitWidth = 225
end
end
object GroupBox2: TGroupBox
Left = 13
Top = 92
Width = 568
Height = 181
Caption = 'Dados do Agente de Sa'#250'de'
TabOrder = 2
object Label5: TLabel
Left = 9
Top = 17
Width = 33
Height = 13
Caption = 'C'#243'digo'
FocusControl = DBEdit1
end
object Label6: TLabel
Left = 9
Top = 60
Width = 89
Height = 13
Caption = 'Nome do Agente *'
FocusControl = DBEdit2
end
object Label7: TLabel
Left = 127
Top = 17
Width = 85
Height = 13
Caption = 'Data do Cadastro'
end
object DBEdit1: TDBEdit
Left = 9
Top = 33
Width = 113
Height = 21
Color = 16744448
DataField = 'COD_DEFICIENCIA'
DataSource = dsTab
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
ReadOnly = True
TabOrder = 0
end
object DBEdit2: TDBEdit
Left = 9
Top = 76
Width = 551
Height = 21
CharCase = ecUpperCase
DataField = 'DESCRICAO'
DataSource = dsTab
TabOrder = 1
end
object DBDateEdit1: TDBDateEdit
Left = 127
Top = 33
Width = 121
Height = 21
Margins.Left = 1
Margins.Top = 1
DataField = 'DAT_CAD'
DataSource = dsTab
ReadOnly = True
Color = 16744448
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
NumGlyphs = 2
ParentFont = False
TabOrder = 2
end
end
end
end
inherited cdsTab: TClientDataSet
object cdsTabCOD_DEFICIENCIA: TIntegerField
FieldName = 'COD_DEFICIENCIA'
Required = True
end
object cdsTabDAT_CAD: TDateField
FieldName = 'DAT_CAD'
end
object cdsTabDESCRICAO: TStringField
FieldName = 'DESCRICAO'
Size = 100
end
end
inherited sqlTab: TSQLQuery
Params = <
item
DataType = ftInteger
Name = 'COD_DEFICIENCIA'
ParamType = ptInput
end>
SQL.Strings = (
'SELECT * FROM DEFICIENCIA WHERE COD_DEFICIENCIA = :COD_DEFICIENC' +
'IA')
end
end