-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdlgSessionPicker.dfm
140 lines (140 loc) · 3.1 KB
/
dlgSessionPicker.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
object SessionPicker: TSessionPicker
Left = 0
Top = 0
BorderStyle = bsDialog
BorderWidth = 2
Caption = 'Select the SwimClubMeet swimming session ...'
ClientHeight = 482
ClientWidth = 546
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Segoe UI'
Font.Style = []
KeyPreview = True
Position = poOwnerFormCenter
OnCreate = FormCreate
OnKeyDown = FormKeyDown
OnShow = FormShow
TextHeight = 21
object pnlHeader: TPanel
Left = 0
Top = 0
Width = 546
Height = 65
Margins.Left = 0
Margins.Top = 0
Margins.Right = 0
Margins.Bottom = 0
Align = alTop
BevelOuter = bvNone
TabOrder = 0
object dbtxtClubName: TDBText
Left = 0
Top = 7
Width = 168
Height = 21
AutoSize = True
DataField = 'Caption'
DataSource = DTData.dsSwimClub
end
object dbtxtNickName: TDBText
Left = 0
Top = 34
Width = 134
Height = 21
AutoSize = True
DataField = 'NickName'
DataSource = DTData.dsSwimClub
end
end
object pnlFooter: TPanel
Left = 0
Top = 428
Width = 546
Height = 54
Align = alBottom
BevelOuter = bvNone
TabOrder = 1
object btnOk: TButton
Left = 455
Top = 6
Width = 91
Height = 35
Caption = 'Ok'
ModalResult = 1
TabOrder = 0
OnClick = btnOkClick
end
object btnCancel: TButton
Left = 350
Top = 6
Width = 91
Height = 35
Caption = 'Cancel'
ModalResult = 2
TabOrder = 1
Visible = False
OnClick = btnCancelClick
end
object btnSelectClub: TButton
Left = 0
Top = 9
Width = 165
Height = 35
Caption = 'Select Swim Club'
Enabled = False
TabOrder = 2
end
end
object pnlBody: TPanel
Left = 0
Top = 65
Width = 546
Height = 363
Align = alClient
BevelOuter = bvNone
TabOrder = 2
object dbgridSession: TDBGrid
Left = 0
Top = 0
Width = 546
Height = 363
Align = alClient
DataSource = DTData.dsSessionList
Options = [dgTitles, dgIndicator, dgColumnResize, dgColLines, dgRowLines, dgTabs, dgRowSelect, dgConfirmDelete, dgCancelOnExit, dgTitleClick, dgTitleHotTrack]
ReadOnly = True
TabOrder = 0
TitleFont.Charset = DEFAULT_CHARSET
TitleFont.Color = clWindowText
TitleFont.Height = -16
TitleFont.Name = 'Segoe UI'
TitleFont.Style = []
OnDblClick = dbgridSessionDblClick
Columns = <
item
Expanded = False
FieldName = 'SessionID'
Title.Alignment = taCenter
Title.Caption = 'ID'
Width = 50
Visible = True
end
item
Expanded = False
FieldName = 'SessionStart'
Title.Caption = 'Session Date.Time'
Width = 150
Visible = True
end
item
Expanded = False
FieldName = 'Caption'
Title.Caption = 'Description'
Width = 300
Visible = True
end>
end
end
end