source: cprs/trunk/CPRS-Chart/Options/fOptionsReportsCustom.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 frmOptionsReportsCustom: TfrmOptionsReportsCustom
2 Left = 414
3 Top = 329
4 BorderIcons = [biSystemMenu, biHelp]
5 BorderStyle = bsDialog
6 Caption = 'Individual CPRS Report Settings'
7 ClientHeight = 383
8 ClientWidth = 503
9 OnClose = FormClose
10 OnCreate = FormCreate
11 OnShow = FormShow
12 PixelsPerInch = 96
13 TextHeight = 13
14 object Bevel3: TBevel [0]
15 Left = 0
16 Top = 352
17 Width = 503
18 Height = 2
19 Align = alBottom
20 end
21 object Panel1: TPanel [1]
22 Left = 0
23 Top = 354
24 Width = 503
25 Height = 29
26 Align = alBottom
27 TabOrder = 1
28 object btnApply: TButton
29 Left = 432
30 Top = 4
31 Width = 50
32 Height = 22
33 Hint = 'Click to save new settings'
34 Caption = 'Apply'
35 Enabled = False
36 ParentShowHint = False
37 ShowHint = True
38 TabOrder = 2
39 OnClick = btnApplyClick
40 end
41 object btnCancel: TButton
42 Left = 368
43 Top = 4
44 Width = 50
45 Height = 22
46 Cancel = True
47 Caption = 'Cancel'
48 TabOrder = 1
49 OnClick = btnCancelClick
50 end
51 object btnOK: TButton
52 Left = 304
53 Top = 4
54 Width = 51
55 Height = 22
56 Caption = 'OK'
57 TabOrder = 0
58 OnClick = btnOKClick
59 end
60 end
61 object Panel2: TPanel [2]
62 Left = 0
63 Top = 0
64 Width = 503
65 Height = 353
66 Align = alTop
67 TabOrder = 0
68 object grdReport: TCaptionStringGrid
69 Left = 1
70 Top = 73
71 Width = 501
72 Height = 272
73 Align = alTop
74 ColCount = 4
75 DefaultRowHeight = 20
76 FixedCols = 0
77 RowCount = 16
78 Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goDrawFocusSelected, goTabs]
79 ScrollBars = ssVertical
80 TabOrder = 5
81 OnDrawCell = grdReportDrawCell
82 OnKeyDown = grdReportKeyDown
83 OnKeyPress = grdReportKeyPress
84 OnMouseDown = grdReportMouseDown
85 Caption = 'Report Grid'
86 ColWidths = (
87 219
88 97
89 89
90 71)
91 end
92 object edtMax: TCaptionEdit
93 Left = 264
94 Top = 328
95 Width = 89
96 Height = 20
97 BorderStyle = bsNone
98 TabOrder = 1
99 Visible = False
100 OnExit = edtMaxExit
101 OnKeyPress = edtMaxKeyPress
102 end
103 object odbStop: TORDateBox
104 Left = 136
105 Top = 328
106 Width = 113
107 Height = 21
108 TabOrder = 3
109 Visible = False
110 OnExit = odbStopExit
111 OnKeyPress = odbStopKeyPress
112 DateOnly = True
113 RequireTime = False
114 Caption = 'Stop Date'
115 end
116 object odbStart: TORDateBox
117 Left = 8
118 Top = 328
119 Width = 113
120 Height = 21
121 TabOrder = 2
122 Visible = False
123 OnExit = odbStartExit
124 OnKeyPress = odbStartKeyPress
125 DateOnly = True
126 RequireTime = False
127 Caption = 'Start Date'
128 end
129 object odbTool: TORDateBox
130 Left = 360
131 Top = 328
132 Width = 121
133 Height = 21
134 TabOrder = 4
135 Visible = False
136 DateOnly = True
137 RequireTime = False
138 Caption = 'Date'
139 end
140 object Panel3: TPanel
141 Left = 1
142 Top = 1
143 Width = 501
144 Height = 72
145 Align = alTop
146 TabOrder = 0
147 object Label1: TLabel
148 Left = 16
149 Top = 8
150 Width = 265
151 Height = 13
152 Caption = 'Type the first few letters of the report you are looking for:'
153 end
154 object edtSearch: TCaptionEdit
155 Left = 24
156 Top = 32
157 Width = 433
158 Height = 21
159 TabOrder = 0
160 OnChange = edtSearchChange
161 OnKeyPress = edtSearchKeyPress
162 Caption = 'Type the first few letters of the report you are looking for:'
163 end
164 end
165 end
166 inherited amgrMain: TVA508AccessibilityManager
167 Data = (
168 (
169 'Component = Panel1'
170 'Status = stsDefault')
171 (
172 'Component = btnApply'
173 'Status = stsDefault')
174 (
175 'Component = btnCancel'
176 'Status = stsDefault')
177 (
178 'Component = btnOK'
179 'Status = stsDefault')
180 (
181 'Component = Panel2'
182 'Status = stsDefault')
183 (
184 'Component = grdReport'
185 'Status = stsDefault')
186 (
187 'Component = edtMax'
188 'Status = stsDefault')
189 (
190 'Component = odbStop'
191 'Status = stsDefault')
192 (
193 'Component = odbStart'
194 'Status = stsDefault')
195 (
196 'Component = odbTool'
197 'Status = stsDefault')
198 (
199 'Component = Panel3'
200 'Status = stsDefault')
201 (
202 'Component = edtSearch'
203 'Status = stsDefault')
204 (
205 'Component = frmOptionsReportsCustom'
206 'Status = stsDefault'))
207 end
208end
Note: See TracBrowser for help on using the repository browser.