-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUParam.dfm
More file actions
140 lines (140 loc) · 3.4 KB
/
Copy pathUParam.dfm
File metadata and controls
140 lines (140 loc) · 3.4 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
inherited frmParam: TfrmParam
Caption = 'Parametros do Sistema'
PixelsPerInch = 96
TextHeight = 13
inherited Panel1: TPanel
inherited Panel2: TPanel
inherited Panel3: TPanel
inherited Label1: TLabel
Width = 279
Caption = 'Formul'#225'rio usado para cadastro de parametros do sistema'
ExplicitWidth = 279
end
end
object GroupBox2: TGroupBox
Left = 13
Top = 92
Width = 568
Height = 181
Caption = 'Dados do Parametro'
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 = 72
Height = 13
Caption = 'Nome do PSF *'
FocusControl = DBEdit2
end
object Label7: TLabel
Left = 127
Top = 17
Width = 85
Height = 13
Caption = 'Data do Cadastro'
end
object Label8: TLabel
Left = 9
Top = 104
Width = 61
Height = 13
Caption = 'Respons'#225'vel'
FocusControl = DBEdit3
end
object DBEdit1: TDBEdit
Left = 9
Top = 33
Width = 113
Height = 21
Color = 16744448
DataField = 'COD_PARAM'
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
object DBEdit3: TDBEdit
Left = 9
Top = 120
Width = 551
Height = 21
CharCase = ecUpperCase
DataField = 'RESPONSAVEL'
DataSource = dsTab
TabOrder = 3
end
end
end
end
inherited cdsTab: TClientDataSet
object cdsTabCOD_PARAM: TIntegerField
FieldName = 'COD_PARAM'
Required = True
end
object cdsTabDAT_CAD: TDateField
FieldName = 'DAT_CAD'
end
object cdsTabDESCRICAO: TStringField
FieldName = 'DESCRICAO'
Size = 100
end
object cdsTabRESPONSAVEL: TStringField
FieldName = 'RESPONSAVEL'
Size = 100
end
end
inherited sqlTab: TSQLQuery
Params = <
item
DataType = ftInteger
Name = 'COD_PARAM'
ParamType = ptInput
end>
SQL.Strings = (
'SELECT FIRST 1 * FROM PARAM'
'WHERE COD_PARAM >= :COD_PARAM')
end
end