source: cprs/trunk/CPRS-Chart/fReminderTree.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.5 KB
Line 
1object frmReminderTree: TfrmReminderTree
2 Left = 256
3 Top = 220
4 Width = 480
5 Height = 255
6 HelpContext = 11200
7 BorderIcons = [biSystemMenu]
8 Caption = 'Available Reminders'
9 Color = clBtnFace
10 Font.Charset = DEFAULT_CHARSET
11 Font.Color = clWindowText
12 Font.Height = -11
13 Font.Name = 'MS Sans Serif'
14 Font.Style = []
15 FormStyle = fsStayOnTop
16 KeyPreview = True
17 Menu = mmMain
18 OldCreateOrder = False
19 OnClose = FormClose
20 OnCreate = FormCreate
21 OnDestroy = FormDestroy
22 PixelsPerInch = 96
23 TextHeight = 13
24 object pnlTop: TPanel
25 Left = 0
26 Top = 0
27 Width = 472
28 Height = 209
29 Align = alClient
30 BevelOuter = bvNone
31 Caption = 'pnlTop'
32 Constraints.MinHeight = 120
33 Constraints.MinWidth = 300
34 TabOrder = 0
35 OnResize = pnlTopResize
36 object tvRem: TORTreeView
37 Tag = 999
38 Left = 0
39 Top = 17
40 Width = 265
41 Height = 192
42 HideSelection = False
43 Images = dmodShared.imgReminders
44 Indent = 23
45 ReadOnly = True
46 RightClickSelect = True
47 RowSelect = True
48 StateImages = dmodShared.imgReminders
49 TabOrder = 0
50 OnAddition = tvRemAddition
51 OnChange = tvRemChange
52 OnClick = tvRemClick
53 OnCollapsed = tvRemCollapsed
54 OnDeletion = tvRemDeletion
55 OnEnter = tvRemEnter
56 OnExit = tvRemExit
57 OnExpanded = tvRemExpanded
58 OnMouseDown = tvRemMouseDown
59 Caption = 'Available Reminders'
60 NodePiece = 0
61 OnNodeCaptioning = tvRemNodeCaptioning
62 end
63 object hcRem: THeaderControl
64 Left = 0
65 Top = 0
66 Width = 472
67 Height = 17
68 DragReorder = False
69 Sections = <
70 item
71 ImageIndex = -1
72 MaxWidth = 267
73 MinWidth = 267
74 Text = 'Available Reminders'
75 Width = 267
76 end
77 item
78 Alignment = taCenter
79 ImageIndex = -1
80 MaxWidth = 68
81 MinWidth = 68
82 Text = 'Due Date'
83 Width = 68
84 end
85 item
86 ImageIndex = -1
87 MaxWidth = 91
88 MinWidth = 91
89 Text = 'Last Occurrence'
90 Width = 91
91 end
92 item
93 Alignment = taCenter
94 ImageIndex = -1
95 MaxWidth = 43
96 MinWidth = 43
97 Text = 'Priority'
98 Width = 43
99 end>
100 OnSectionClick = hcRemSectionClick
101 end
102 object pnlTopRight: TPanel
103 Left = 266
104 Top = 17
105 Width = 206
106 Height = 192
107 Align = alRight
108 BevelOuter = bvNone
109 Caption = 'pnlTopRight'
110 TabOrder = 2
111 object bvlGap: TBevel
112 Left = 0
113 Top = 175
114 Width = 206
115 Height = 17
116 Align = alBottom
117 Shape = bsSpacer
118 Visible = False
119 end
120 object lbRem: TORListBox
121 Left = 0
122 Top = 0
123 Width = 206
124 Height = 175
125 TabStop = False
126 Style = lbOwnerDrawFixed
127 Align = alClient
128 ItemHeight = 16
129 ParentShowHint = False
130 ShowHint = True
131 TabOrder = 0
132 OnClick = lbRemClick
133 OnDblClick = lbRemClick
134 OnDrawItem = lbRemDrawItem
135 Caption = 'Due Date, last occurance, and priority'
136 ItemTipColor = clWindow
137 ItemTipEnable = False
138 LongList = False
139 OnChange = lbRemChange
140 end
141 end
142 end
143 object mmMain: TMainMenu
144 Images = dmodShared.imgReminders2
145 Left = 48
146 Top = 24
147 object memAction: TMenuItem
148 Caption = '&Action'
149 OnClick = memActionClick
150 object memEval: TMenuItem
151 Caption = '&Evaluate Reminder'
152 OnClick = memEvalClick
153 end
154 object memEvalCat: TMenuItem
155 Caption = 'Evaluate &Category Reminders'
156 OnClick = memEvalCatClick
157 end
158 object memEvalAll: TMenuItem
159 Caption = 'Evaluate Processed &Reminders'
160 OnClick = memEvalAllClick
161 end
162 object N2: TMenuItem
163 Caption = '-'
164 end
165 object memRefresh: TMenuItem
166 Caption = 'Re&fresh Reminder Dialogs'
167 OnClick = memRefreshClick
168 end
169 object mnuCoverSheet: TMenuItem
170 Caption = 'Edit Cover Sheet Reminder &List'
171 OnClick = mnuCoverSheetClick
172 end
173 object mnuExit: TMenuItem
174 Caption = 'E&xit Available Reminders'
175 ShortCut = 27
176 OnClick = mnuExitClick
177 end
178 end
179 end
180end
Note: See TracBrowser for help on using the repository browser.