-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnit_consul_dependentes.dfm
58 lines (58 loc) · 1.4 KB
/
Unit_consul_dependentes.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
object Form_consul_dependente: TForm_consul_dependente
Left = 753
Top = 242
BorderStyle = bsSingle
Caption = 'Consulta Dependentes'
ClientHeight = 288
ClientWidth = 719
Color = clBtnFace
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Verdana'
Font.Style = []
OldCreateOrder = False
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object DBGrid1: TDBGrid
Left = 8
Top = 16
Width = 697
Height = 217
DataSource = ds_dependentes
Options = [dgTitles, dgIndicator, dgColumnResize, dgColLines, dgRowLines, dgTabs, dgRowSelect, dgConfirmDelete, dgCancelOnExit]
TabOrder = 0
TitleFont.Charset = ANSI_CHARSET
TitleFont.Color = clWindowText
TitleFont.Height = -11
TitleFont.Name = 'Verdana'
TitleFont.Style = []
end
object btn_fechar: TBitBtn
Left = 272
Top = 248
Width = 177
Height = 25
Caption = 'Fechar'
TabOrder = 1
OnClick = btn_fecharClick
Kind = bkAbort
end
object adoquery_aux: TADOQuery
Active = True
Connection = Form_menu.conexaoDB
CursorType = ctStatic
Parameters = <>
SQL.Strings = (
'SELECT id AS Identifica'#231#227'o, nome AS Nome, idade AS Idade,'
' nome_socio AS S'#243'cio FROM Dependente')
Left = 56
Top = 248
end
object ds_dependentes: TDataSource
DataSet = adoquery_aux
Left = 16
Top = 248
end
end