source: cprs/trunk/CPRS-Chart/fNoteBD.dfm@ 830

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

Upgrading to version 27

File size: 2.5 KB
Line 
1inherited frmNotesByDate: TfrmNotesByDate
2 Left = 590
3 Top = 294
4 BorderIcons = []
5 Caption = 'List Signed Notes by Date Range'
6 ClientHeight = 151
7 ClientWidth = 251
8 OldCreateOrder = True
9 Position = poScreenCenter
10 ExplicitWidth = 259
11 ExplicitHeight = 178
12 PixelsPerInch = 96
13 TextHeight = 13
14 object pnlBase: TORAutoPanel [0]
15 Left = 0
16 Top = 0
17 Width = 251
18 Height = 151
19 Align = alClient
20 BevelOuter = bvNone
21 TabOrder = 0
22 object lblBeginDate: TLabel
23 Left = 8
24 Top = 8
25 Width = 73
26 Height = 13
27 Caption = 'Beginning Date'
28 end
29 object lblEndDate: TLabel
30 Left = 8
31 Top = 51
32 Width = 59
33 Height = 13
34 Caption = 'Ending Date'
35 end
36 object calBeginDate: TORDateBox
37 Left = 8
38 Top = 22
39 Width = 155
40 Height = 21
41 TabOrder = 0
42 OnKeyPress = calBeginDateKeyPress
43 DateOnly = False
44 RequireTime = False
45 Caption = 'Beginning Date'
46 end
47 object calEndDate: TORDateBox
48 Left = 8
49 Top = 65
50 Width = 155
51 Height = 21
52 TabOrder = 1
53 OnKeyPress = calEndDateKeyPress
54 DateOnly = False
55 RequireTime = False
56 Caption = 'Ending Date'
57 end
58 object radSort: TRadioGroup
59 Left = 8
60 Top = 94
61 Width = 155
62 Height = 49
63 Caption = 'Sort Order'
64 Items.Strings = (
65 '&Ascending (oldest first)'
66 '&Descending (newest first)')
67 TabOrder = 2
68 end
69 object cmdOK: TButton
70 Left = 171
71 Top = 22
72 Width = 72
73 Height = 21
74 Caption = 'OK'
75 Default = True
76 TabOrder = 3
77 OnClick = cmdOKClick
78 end
79 object cmdCancel: TButton
80 Left = 171
81 Top = 49
82 Width = 72
83 Height = 21
84 Cancel = True
85 Caption = 'Cancel'
86 TabOrder = 4
87 OnClick = cmdCancelClick
88 end
89 end
90 inherited amgrMain: TVA508AccessibilityManager
91 Data = (
92 (
93 'Component = pnlBase'
94 'Status = stsDefault')
95 (
96 'Component = calBeginDate'
97 'Status = stsDefault')
98 (
99 'Component = calEndDate'
100 'Status = stsDefault')
101 (
102 'Component = radSort'
103 'Status = stsDefault')
104 (
105 'Component = cmdOK'
106 'Status = stsDefault')
107 (
108 'Component = cmdCancel'
109 'Status = stsDefault')
110 (
111 'Component = frmNotesByDate'
112 'Status = stsDefault'))
113 end
114end
Note: See TracBrowser for help on using the repository browser.