source: cprs/trunk/CPRS-Chart/fSurgeryView.dfm

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

Upgrading to version 27

File size: 4.4 KB
Line 
1inherited frmSurgeryView: TfrmSurgeryView
2 Left = 333
3 Top = 256
4 BorderIcons = []
5 Caption = 'List Selected Cases'
6 ClientHeight = 202
7 ClientWidth = 358
8 OldCreateOrder = True
9 Position = poScreenCenter
10 ExplicitWidth = 366
11 ExplicitHeight = 229
12 PixelsPerInch = 96
13 TextHeight = 13
14 object pnlBase: TORAutoPanel [0]
15 Left = 0
16 Top = 0
17 Width = 358
18 Height = 202
19 Align = alClient
20 BevelOuter = bvNone
21 TabOrder = 0
22 object lblBeginDate: TLabel
23 Left = 4
24 Top = 10
25 Width = 48
26 Height = 13
27 Caption = 'Start Date'
28 end
29 object lblEndDate: TLabel
30 Left = 4
31 Top = 67
32 Width = 48
33 Height = 13
34 Caption = 'Stop Date'
35 end
36 object lblMaxDocs: TLabel
37 Left = 4
38 Top = 125
39 Width = 107
40 Height = 13
41 Caption = 'Max Number to Return'
42 end
43 object calBeginDate: TORDateBox
44 Left = 4
45 Top = 24
46 Width = 156
47 Height = 21
48 TabOrder = 0
49 DateOnly = False
50 RequireTime = False
51 Caption = 'Start Date'
52 end
53 object calEndDate: TORDateBox
54 Left = 4
55 Top = 81
56 Width = 156
57 Height = 21
58 TabOrder = 1
59 DateOnly = False
60 RequireTime = False
61 Caption = 'Stop Date'
62 end
63 object cmdOK: TButton
64 Left = 97
65 Top = 172
66 Width = 72
67 Height = 21
68 Caption = 'OK'
69 Default = True
70 TabOrder = 5
71 OnClick = cmdOKClick
72 end
73 object cmdCancel: TButton
74 Left = 177
75 Top = 172
76 Width = 72
77 Height = 21
78 Cancel = True
79 Caption = 'Cancel'
80 TabOrder = 6
81 OnClick = cmdCancelClick
82 end
83 object edMaxDocs: TCaptionEdit
84 Left = 4
85 Top = 138
86 Width = 156
87 Height = 21
88 MaxLength = 6
89 TabOrder = 2
90 Caption = 'Max Number to Return'
91 end
92 object grpTreeView: TGroupBox
93 Left = 177
94 Top = 9
95 Width = 175
96 Height = 150
97 Caption = 'Sorting/Grouping of Cases'
98 TabOrder = 3
99 object lblGroupBy: TOROffsetLabel
100 Left = 10
101 Top = 71
102 Width = 49
103 Height = 15
104 Caption = 'Group By:'
105 HorzOffset = 2
106 Transparent = False
107 VertOffset = 2
108 WordWrap = False
109 end
110 object cboGroupBy: TORComboBox
111 Left = 10
112 Top = 85
113 Width = 153
114 Height = 21
115 Style = orcsDropDown
116 AutoSelect = True
117 Caption = 'Group By'
118 Color = clWindow
119 DropDownCount = 8
120 Items.Strings = (
121 'D^Surgery Date'
122 'P^Procedure'
123 'S^Surgeon'
124 'T^Type of Procedure')
125 ItemHeight = 13
126 ItemTipColor = clWindow
127 ItemTipEnable = True
128 ListItemsOnly = True
129 LongList = False
130 LookupPiece = 0
131 MaxLength = 0
132 Pieces = '2'
133 Sorted = False
134 SynonymChars = '<>'
135 TabOrder = 1
136 CharsNeedMatch = 1
137 end
138 object radTreeSort: TRadioGroup
139 Left = 9
140 Top = 20
141 Width = 155
142 Height = 49
143 Caption = 'Sort Order'
144 Items.Strings = (
145 '&Ascending'
146 '&Descending')
147 TabOrder = 0
148 end
149 end
150 object cmdClear: TButton
151 Left = 190
152 Top = 125
153 Width = 146
154 Height = 21
155 Caption = 'Clear Sort/Group'
156 TabOrder = 4
157 OnClick = cmdClearClick
158 end
159 end
160 inherited amgrMain: TVA508AccessibilityManager
161 Data = (
162 (
163 'Component = pnlBase'
164 'Status = stsDefault')
165 (
166 'Component = calBeginDate'
167 'Status = stsDefault')
168 (
169 'Component = calEndDate'
170 'Status = stsDefault')
171 (
172 'Component = cmdOK'
173 'Status = stsDefault')
174 (
175 'Component = cmdCancel'
176 'Status = stsDefault')
177 (
178 'Component = edMaxDocs'
179 'Status = stsDefault')
180 (
181 'Component = grpTreeView'
182 'Status = stsDefault')
183 (
184 'Component = cboGroupBy'
185 'Status = stsDefault')
186 (
187 'Component = radTreeSort'
188 'Status = stsDefault')
189 (
190 'Component = cmdClear'
191 'Status = stsDefault')
192 (
193 'Component = frmSurgeryView'
194 'Status = stsDefault'))
195 end
196end
Note: See TracBrowser for help on using the repository browser.