-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathuPatientSelection.dfm
125 lines (125 loc) · 2.76 KB
/
uPatientSelection.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
object PatientSelectionForm: TPatientSelectionForm
Left = 0
Top = 0
Caption = 'Selection Patient'
ClientHeight = 563
ClientWidth = 968
Color = clBtnFace
CustomTitleBar.Height = 31
DoubleBuffered = True
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Segoe UI'
Font.Style = []
GlassFrame.Top = 31
OldCreateOrder = False
Position = poScreenCenter
StyleElements = [seFont, seClient]
OnCreate = FormCreate
OnDestroy = FormDestroy
PixelsPerInch = 96
TextHeight = 21
object dgPatients: TDBGrid
Left = 0
Top = 73
Width = 968
Height = 490
Align = alClient
DataSource = DM.dsPatientsSelection
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -21
Font.Name = 'Segoe UI'
Font.Style = []
ParentFont = False
TabOrder = 0
TitleFont.Charset = DEFAULT_CHARSET
TitleFont.Color = clWindowText
TitleFont.Height = -21
TitleFont.Name = 'Segoe UI'
TitleFont.Style = []
OnDblClick = dgPatientsDblClick
Columns = <
item
Expanded = False
FieldName = 'ID'
Visible = False
end
item
Expanded = False
FieldName = 'FirstName'
Width = 300
Visible = True
end
item
Expanded = False
FieldName = 'MiddleName'
Width = 200
Visible = True
end
item
Expanded = False
FieldName = 'LastName'
Width = 300
Visible = True
end
item
Expanded = False
FieldName = 'Suffix'
Width = 145
Visible = True
end>
end
object Panel1: TPanel
AlignWithMargins = True
Left = 25
Top = 3
Width = 940
Height = 67
Margins.Left = 25
Align = alTop
BevelOuter = bvNone
FullRepaint = False
TabOrder = 1
DesignSize = (
940
67)
object Cancel: TSpeedButton
Left = 681
Top = 20
Width = 121
Height = 38
Hint = 'Cancel'
Anchors = []
Caption = 'Cancel'
ImageIndex = 14
ImageName = 'baseline_clear_white'
Images = MainForm.VirtualImageList1
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Segoe UI'
Font.Style = []
ParentFont = False
OnClick = CancelClick
end
object SelectButton: TSpeedButton
Left = 808
Top = 20
Width = 121
Height = 38
Hint = 'Complete'
Anchors = []
Caption = 'Select'
Images = MainForm.VirtualImageList1
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Segoe UI'
Font.Style = []
ParentFont = False
OnClick = SelectButtonClick
end
end
end