source: cprs/trunk/CPRS-Chart/Orders/fOrderVw.dfm@ 456

Last change on this file since 456 was 456, checked in by Kevin Toppenberg, 16 years ago

Initial Upload of Official WV CPRS 1.0.26.76

File size: 4.9 KB
Line 
1inherited frmOrderView: TfrmOrderView
2 Left = 340
3 Top = 165
4 Width = 429
5 Height = 440
6 Caption = 'Custom Order View'
7 Position = poScreenCenter
8 OnCreate = FormCreate
9 PixelsPerInch = 96
10 TextHeight = 13
11 object pnlView: TPanel
12 Left = 0
13 Top = 0
14 Width = 421
15 Height = 21
16 Align = alTop
17 BevelOuter = bvLowered
18 Font.Charset = DEFAULT_CHARSET
19 Font.Color = clWindowText
20 Font.Height = -11
21 Font.Name = 'MS Sans Serif'
22 Font.Style = [fsBold]
23 ParentFont = False
24 TabOrder = 0
25 object lblView: TLabel
26 Left = 1
27 Top = 1
28 Width = 419
29 Height = 19
30 Align = alClient
31 Alignment = taCenter
32 Caption = 'All Services, Active Orders'
33 Layout = tlCenter
34 end
35 end
36 object Panel1: TPanel
37 Left = 0
38 Top = 21
39 Width = 421
40 Height = 277
41 Align = alClient
42 BevelOuter = bvNone
43 TabOrder = 1
44 object Splitter1: TSplitter
45 Left = 211
46 Top = 0
47 Width = 3
48 Height = 277
49 Cursor = crHSplit
50 MinSize = 1
51 OnMoved = Splitter1Moved
52 end
53 object Panel2: TPanel
54 Left = 0
55 Top = 0
56 Width = 211
57 Height = 277
58 Align = alLeft
59 Constraints.MinWidth = 15
60 TabOrder = 0
61 object lblFilter: TLabel
62 Left = 1
63 Top = 1
64 Width = 209
65 Height = 13
66 Align = alTop
67 Alignment = taCenter
68 Caption = 'Order Status'
69 Layout = tlCenter
70 end
71 object trFilters: TCaptionTreeView
72 Left = 1
73 Top = 14
74 Width = 209
75 Height = 262
76 Align = alClient
77 Indent = 19
78 TabOrder = 0
79 OnClick = trFiltersClick
80 Caption = 'Order Status'
81 end
82 end
83 object Panel3: TPanel
84 Left = 214
85 Top = 0
86 Width = 207
87 Height = 277
88 Align = alClient
89 Constraints.MinWidth = 15
90 TabOrder = 1
91 object lblService: TLabel
92 Left = 1
93 Top = 1
94 Width = 205
95 Height = 13
96 Align = alTop
97 Alignment = taCenter
98 Caption = 'Service/Section'
99 Layout = tlCenter
100 end
101 object treService: TCaptionTreeView
102 Left = 1
103 Top = 14
104 Width = 205
105 Height = 262
106 Align = alClient
107 Indent = 19
108 TabOrder = 0
109 OnClick = treServiceClick
110 Caption = 'Service/Section'
111 end
112 end
113 end
114 object Panel4: TPanel
115 Left = 0
116 Top = 298
117 Width = 421
118 Height = 114
119 Align = alBottom
120 TabOrder = 2
121 DesignSize = (
122 421
123 114)
124 object chkDateRange: TCheckBox
125 Left = 5
126 Top = 3
127 Width = 372
128 Height = 19
129 Caption = 'Only List Orders Placed During Time Period'
130 TabOrder = 0
131 OnClick = chkDateRangeClick
132 end
133 object GroupBox1: TGroupBox
134 Left = 4
135 Top = 21
136 Width = 399
137 Height = 45
138 TabOrder = 1
139 object lblFrom: TLabel
140 Left = 25
141 Top = 19
142 Width = 26
143 Height = 13
144 Caption = 'From:'
145 Enabled = False
146 end
147 object lblThru: TLabel
148 Left = 210
149 Top = 19
150 Width = 43
151 Height = 13
152 Caption = 'Through:'
153 Enabled = False
154 end
155 object calFrom: TORDateBox
156 Left = 55
157 Top = 16
158 Width = 128
159 Height = 21
160 Color = clBtnFace
161 Enabled = False
162 TabOrder = 0
163 OnChange = calChange
164 DateOnly = False
165 RequireTime = False
166 Caption = 'From Date'
167 end
168 object calThru: TORDateBox
169 Left = 257
170 Top = 16
171 Width = 128
172 Height = 21
173 Color = clBtnFace
174 Enabled = False
175 TabOrder = 1
176 OnChange = calChange
177 DateOnly = False
178 RequireTime = False
179 Caption = 'Through Date'
180 end
181 end
182 object chkInvChrono: TCheckBox
183 Left = 6
184 Top = 92
185 Width = 204
186 Height = 18
187 Anchors = [akLeft, akBottom]
188 Caption = 'Reverse Chronological Sequence'
189 Checked = True
190 State = cbChecked
191 TabOrder = 2
192 end
193 object chkByService: TCheckBox
194 Left = 6
195 Top = 72
196 Width = 187
197 Height = 18
198 Caption = 'Group Orders by Service'
199 Checked = True
200 State = cbChecked
201 TabOrder = 3
202 end
203 object cmdOK: TButton
204 Left = 246
205 Top = 78
206 Width = 72
207 Height = 23
208 Anchors = [akLeft, akBottom]
209 Caption = 'OK'
210 Default = True
211 TabOrder = 4
212 OnClick = cmdOKClick
213 end
214 object cmdCancel: TButton
215 Left = 328
216 Top = 78
217 Width = 72
218 Height = 23
219 Anchors = [akRight, akBottom]
220 Cancel = True
221 Caption = 'Cancel'
222 TabOrder = 5
223 OnClick = cmdCancelClick
224 end
225 end
226end
Note: See TracBrowser for help on using the repository browser.