source: cprs/trunk/CPRS-Chart/Options/fOptionsReminders.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.8 KB
Line 
1inherited frmOptionsReminders: TfrmOptionsReminders
2 Left = 693
3 Top = 17
4 HelpContext = 9020
5 BorderIcons = [biSystemMenu, biHelp]
6 BorderStyle = bsDialog
7 Caption = 'Clinical Reminders on Cover Sheet'
8 ClientHeight = 323
9 ClientWidth = 407
10 HelpFile = 'CPRSWT.HLP'
11 Position = poScreenCenter
12 OnCreate = FormCreate
13 PixelsPerInch = 96
14 TextHeight = 13
15 object lblDisplayed: TLabel [0]
16 Left = 209
17 Top = 8
18 Width = 129
19 Height = 13
20 Caption = 'Reminders being displayed:'
21 end
22 object lblNotDisplayed: TLabel [1]
23 Left = 8
24 Top = 8
25 Width = 147
26 Height = 13
27 Caption = 'Reminders not being displayed:'
28 end
29 object pnlBottom: TPanel [2]
30 Left = 0
31 Top = 290
32 Width = 407
33 Height = 33
34 HelpContext = 9020
35 Align = alBottom
36 BevelOuter = bvNone
37 ParentColor = True
38 TabOrder = 7
39 object bvlBottom: TBevel
40 Left = 0
41 Top = 0
42 Width = 407
43 Height = 2
44 Align = alTop
45 end
46 object btnOK: TButton
47 Left = 247
48 Top = 8
49 Width = 75
50 Height = 22
51 HelpContext = 9996
52 Caption = 'OK'
53 ModalResult = 1
54 TabOrder = 0
55 OnClick = btnOKClick
56 end
57 object btnCancel: TButton
58 Left = 327
59 Top = 8
60 Width = 75
61 Height = 22
62 HelpContext = 9997
63 Cancel = True
64 Caption = 'Cancel'
65 ModalResult = 2
66 TabOrder = 1
67 end
68 end
69 object lstDisplayed: TORListBox [3]
70 Left = 209
71 Top = 25
72 Width = 160
73 Height = 217
74 HelpContext = 9025
75 ItemHeight = 13
76 MultiSelect = True
77 ParentShowHint = False
78 ShowHint = True
79 TabOrder = 3
80 OnClick = lstDisplayedChange
81 OnDblClick = btnDeleteClick
82 Caption = 'Reminders being displayed:'
83 ItemTipColor = clWindow
84 LongList = False
85 Pieces = '3'
86 OnChange = lstDisplayedChange
87 end
88 object lstNotDisplayed: TORListBox [4]
89 Left = 8
90 Top = 25
91 Width = 160
92 Height = 217
93 HelpContext = 9026
94 ItemHeight = 13
95 MultiSelect = True
96 ParentShowHint = False
97 ShowHint = True
98 Sorted = True
99 TabOrder = 0
100 OnClick = lstNotDisplayedChange
101 OnDblClick = btnAddClick
102 Caption = 'Reminders not being displayed:'
103 ItemTipColor = clWindow
104 LongList = False
105 Pieces = '3'
106 OnChange = lstNotDisplayedChange
107 end
108 object btnUp: TButton [5]
109 Left = 378
110 Top = 94
111 Width = 22
112 Height = 22
113 HelpContext = 9021
114 Caption = '^'
115 TabOrder = 4
116 OnClick = btnUpClick
117 end
118 object btnDown: TButton [6]
119 Left = 378
120 Top = 142
121 Width = 22
122 Height = 22
123 HelpContext = 9022
124 Caption = 'v'
125 TabOrder = 6
126 OnClick = btnDownClick
127 end
128 object btnDelete: TButton [7]
129 Left = 178
130 Top = 181
131 Width = 22
132 Height = 22
133 HelpContext = 9023
134 Caption = '<'
135 Font.Charset = DEFAULT_CHARSET
136 Font.Color = clWindowText
137 Font.Height = -11
138 Font.Name = 'MS Sans Serif'
139 Font.Style = []
140 ParentFont = False
141 TabOrder = 2
142 OnClick = btnDeleteClick
143 end
144 object btnAdd: TButton [8]
145 Left = 178
146 Top = 70
147 Width = 22
148 Height = 22
149 HelpContext = 9024
150 Caption = '>'
151 Font.Charset = DEFAULT_CHARSET
152 Font.Color = clWindowText
153 Font.Height = -11
154 Font.Name = 'MS Sans Serif'
155 Font.Style = []
156 ParentFont = False
157 TabOrder = 1
158 OnClick = btnAddClick
159 end
160 object radSort: TRadioGroup [9]
161 Left = 209
162 Top = 246
163 Width = 192
164 Height = 37
165 Caption = 'Sort by '
166 Columns = 2
167 Font.Charset = DEFAULT_CHARSET
168 Font.Color = clWindowText
169 Font.Height = -11
170 Font.Name = 'MS Sans Serif'
171 Font.Style = []
172 ItemIndex = 0
173 Items.Strings = (
174 '&Display Order'
175 '&Alphabetical')
176 ParentFont = False
177 TabOrder = 5
178 OnClick = radSortClick
179 end
180 inherited amgrMain: TVA508AccessibilityManager
181 Data = (
182 (
183 'Component = pnlBottom'
184 'Status = stsDefault')
185 (
186 'Component = btnOK'
187 'Status = stsDefault')
188 (
189 'Component = btnCancel'
190 'Status = stsDefault')
191 (
192 'Component = lstDisplayed'
193 'Status = stsDefault')
194 (
195 'Component = lstNotDisplayed'
196 'Status = stsDefault')
197 (
198 'Component = btnUp'
199 'Status = stsDefault')
200 (
201 'Component = btnDown'
202 'Status = stsDefault')
203 (
204 'Component = btnDelete'
205 'Status = stsDefault')
206 (
207 'Component = btnAdd'
208 'Status = stsDefault')
209 (
210 'Component = radSort'
211 'Status = stsDefault')
212 (
213 'Component = frmOptionsReminders'
214 'Status = stsDefault'))
215 end
216end
Note: See TracBrowser for help on using the repository browser.