source: cprs/trunk/CPRS-Chart/Consults/fConsMedRslt.dfm@ 829

Last change on this file since 829 was 829, checked in by Kevin Toppenberg, 14 years ago

Upgrade to version 27

File size: 4.7 KB
Line 
1inherited frmConsMedRslt: TfrmConsMedRslt
2 Left = 468
3 Top = 172
4 BorderStyle = bsDialog
5 Caption = 'Select Medicine Result'
6 ClientHeight = 242
7 ClientWidth = 505
8 Position = poScreenCenter
9 ExplicitWidth = 320
10 ExplicitHeight = 240
11 PixelsPerInch = 96
12 TextHeight = 13
13 object pnlBase: TORAutoPanel [0]
14 Left = 0
15 Top = 0
16 Width = 505
17 Height = 242
18 Align = alClient
19 BevelOuter = bvNone
20 TabOrder = 0
21 object SrcLabel: TLabel
22 Left = 12
23 Top = 6
24 Width = 145
25 Height = 16
26 AutoSize = False
27 Caption = 'Select medicine result:'
28 end
29 object lblDateofAction: TOROffsetLabel
30 Left = 133
31 Top = 159
32 Width = 112
33 Height = 19
34 Caption = 'Date/time of this action'
35 HorzOffset = 2
36 Transparent = False
37 VertOffset = 6
38 WordWrap = False
39 end
40 object lblActionBy: TOROffsetLabel
41 Left = 266
42 Top = 159
43 Width = 215
44 Height = 19
45 Caption = 'Action by'
46 HorzOffset = 2
47 Transparent = False
48 VertOffset = 6
49 WordWrap = False
50 end
51 object lblResultName: TOROffsetLabel
52 Left = 27
53 Top = 29
54 Width = 90
55 Height = 15
56 Caption = 'Type of Result'
57 HorzOffset = 2
58 Transparent = False
59 VertOffset = 2
60 WordWrap = False
61 end
62 object lblResultDate: TOROffsetLabel
63 Left = 255
64 Top = 29
65 Width = 74
66 Height = 15
67 Caption = 'Date of Result'
68 HorzOffset = 2
69 Transparent = False
70 VertOffset = 2
71 WordWrap = False
72 end
73 object lblSummary: TOROffsetLabel
74 Left = 375
75 Top = 29
76 Width = 45
77 Height = 15
78 Caption = 'Summary'
79 HorzOffset = 2
80 Transparent = False
81 VertOffset = 2
82 WordWrap = False
83 end
84 object cmdOK: TButton
85 Left = 332
86 Top = 211
87 Width = 75
88 Height = 21
89 Caption = 'OK'
90 Default = True
91 TabOrder = 5
92 OnClick = cmdOKClick
93 end
94 object cmdCancel: TButton
95 Left = 412
96 Top = 211
97 Width = 75
98 Height = 21
99 Cancel = True
100 Caption = 'Cancel'
101 TabOrder = 6
102 OnClick = cmdCancelClick
103 end
104 object lstMedResults: TORListBox
105 Left = 15
106 Top = 45
107 Width = 476
108 Height = 114
109 Style = lbOwnerDrawFixed
110 ItemHeight = 13
111 ParentShowHint = False
112 ShowHint = True
113 Sorted = True
114 TabOrder = 0
115 OnDrawItem = lstMedResultsDrawItem
116 Caption = 'Select medicine result'
117 ItemTipColor = clWindow
118 LongList = False
119 Pieces = '2,3,4'
120 TabPositions = '40,60'
121 end
122 object cmdDetails: TButton
123 Left = 15
124 Top = 179
125 Width = 75
126 Height = 21
127 Caption = 'Show Details'
128 TabOrder = 1
129 OnClick = cmdDetailsClick
130 end
131 object ckAlert: TCheckBox
132 Left = 131
133 Top = 211
134 Width = 79
135 Height = 17
136 Caption = 'Send alert'
137 TabOrder = 4
138 OnClick = ckAlertClick
139 end
140 object calDateofAction: TORDateBox
141 Left = 133
142 Top = 179
143 Width = 116
144 Height = 21
145 TabStop = False
146 TabOrder = 2
147 Text = 'Now'
148 DateOnly = False
149 RequireTime = False
150 Caption = 'Date/time of this action'
151 end
152 object cboPerson: TORComboBox
153 Left = 265
154 Top = 179
155 Width = 220
156 Height = 21
157 Style = orcsDropDown
158 AutoSelect = True
159 Caption = 'Action by'
160 Color = clWindow
161 DropDownCount = 8
162 ItemHeight = 13
163 ItemTipColor = clWindow
164 ItemTipEnable = True
165 ListItemsOnly = True
166 LongList = True
167 LookupPiece = 2
168 MaxLength = 0
169 Pieces = '2,3'
170 Sorted = False
171 SynonymChars = '<>'
172 TabOrder = 3
173 OnNeedData = NewPersonNeedData
174 CharsNeedMatch = 1
175 end
176 end
177 inherited amgrMain: TVA508AccessibilityManager
178 Data = (
179 (
180 'Component = pnlBase'
181 'Status = stsDefault')
182 (
183 'Component = cmdOK'
184 'Status = stsDefault')
185 (
186 'Component = cmdCancel'
187 'Status = stsDefault')
188 (
189 'Component = lstMedResults'
190 'Status = stsDefault')
191 (
192 'Component = cmdDetails'
193 'Status = stsDefault')
194 (
195 'Component = ckAlert'
196 'Status = stsDefault')
197 (
198 'Component = calDateofAction'
199 'Status = stsDefault')
200 (
201 'Component = cboPerson'
202 'Status = stsDefault')
203 (
204 'Component = frmConsMedRslt'
205 'Status = stsDefault'))
206 end
207end
Note: See TracBrowser for help on using the repository browser.