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

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

Upgrading to version 27

File size: 2.0 KB
RevLine 
[456]1inherited frmDateRange: TfrmDateRange
2 Left = 460
3 Top = 262
4 Caption = 'Date Range'
[830]5 ClientHeight = 132
6 ClientWidth = 274
[456]7 Position = poScreenCenter
8 OnCreate = FormCreate
[830]9 ExplicitWidth = 282
10 ExplicitHeight = 159
[456]11 PixelsPerInch = 96
12 TextHeight = 13
[830]13 object lblStart: TLabel [0]
[456]14 Left = 8
15 Top = 44
16 Width = 53
17 Height = 13
18 Caption = 'Begin Date'
19 end
[830]20 object lblStop: TLabel [1]
[456]21 Left = 145
22 Top = 44
23 Width = 45
24 Height = 13
25 Caption = 'End Date'
26 end
[830]27 object lblInstruct: TOROffsetLabel [2]
[456]28 Left = 0
29 Top = 0
30 Width = 274
31 Height = 37
32 Align = alTop
33 Caption = 'Select a date range -'
34 HorzOffset = 8
35 Transparent = False
36 VertOffset = 8
37 WordWrap = True
38 end
[830]39 object txtStart: TORDateBox [3]
[456]40 Left = 8
41 Top = 58
42 Width = 121
43 Height = 21
44 TabOrder = 0
45 DateOnly = False
46 RequireTime = False
47 Caption = 'Begin Date'
48 end
[830]49 object txtStop: TORDateBox [4]
[456]50 Left = 145
51 Top = 58
52 Width = 121
53 Height = 21
54 TabOrder = 1
55 DateOnly = False
56 RequireTime = False
57 Caption = 'End Date'
58 end
[830]59 object cmdOK: TButton [5]
[456]60 Left = 114
61 Top = 103
62 Width = 72
63 Height = 21
64 Caption = 'OK'
65 Default = True
66 TabOrder = 2
67 OnClick = cmdOKClick
68 end
[830]69 object cmdCancel: TButton [6]
[456]70 Left = 194
71 Top = 103
72 Width = 72
73 Height = 21
74 Cancel = True
75 Caption = 'Cancel'
76 TabOrder = 3
77 OnClick = cmdCancelClick
78 end
[830]79 inherited amgrMain: TVA508AccessibilityManager
80 Data = (
81 (
82 'Component = txtStart'
83 'Status = stsDefault')
84 (
85 'Component = txtStop'
86 'Status = stsDefault')
87 (
88 'Component = cmdOK'
89 'Status = stsDefault')
90 (
91 'Component = cmdCancel'
92 'Status = stsDefault')
93 (
94 'Component = frmDateRange'
95 'Status = stsDefault'))
96 end
[456]97end
Note: See TracBrowser for help on using the repository browser.