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

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

Upgrading to version 27

File size: 4.5 KB
Line 
1inherited frmAlertForward: TfrmAlertForward
2 Left = 297
3 Top = 206
4 BorderStyle = bsDialog
5 Caption = 'Forward Alert'
6 ClientHeight = 381
7 ClientWidth = 387
8 OldCreateOrder = True
9 Position = poScreenCenter
10 OnCreate = FormCreate
11 ExplicitWidth = 393
12 ExplicitHeight = 406
13 PixelsPerInch = 96
14 TextHeight = 13
15 object pnlBase: TORAutoPanel [0]
16 Left = 0
17 Top = 0
18 Width = 387
19 Height = 381
20 Align = alClient
21 BevelOuter = bvNone
22 TabOrder = 0
23 object SrcLabel: TLabel
24 Left = 12
25 Top = 120
26 Width = 144
27 Height = 30
28 AutoSize = False
29 Caption = 'Select one or more names to receive forwarded alert'
30 WordWrap = True
31 end
32 object DstLabel: TLabel
33 Left = 231
34 Top = 133
35 Width = 145
36 Height = 16
37 AutoSize = False
38 Caption = 'Currently selected recipients'
39 end
40 object Label1: TLabel
41 Left = 12
42 Top = 47
43 Width = 44
44 Height = 13
45 Caption = 'Comment'
46 end
47 object cmdOK: TButton
48 Left = 105
49 Top = 349
50 Width = 75
51 Height = 25
52 Caption = '&OK'
53 TabOrder = 7
54 OnClick = cmdOKClick
55 end
56 object cmdCancel: TButton
57 Left = 193
58 Top = 349
59 Width = 75
60 Height = 25
61 Cancel = True
62 Caption = '&Cancel'
63 TabOrder = 8
64 OnClick = cmdCancelClick
65 end
66 object cboSrcList: TORComboBox
67 Left = 12
68 Top = 156
69 Width = 144
70 Height = 185
71 Style = orcsSimple
72 AutoSelect = True
73 Color = clWindow
74 DropDownCount = 8
75 ItemHeight = 13
76 ItemTipColor = clWindow
77 ItemTipEnable = True
78 ListItemsOnly = True
79 LongList = True
80 LookupPiece = 0
81 MaxLength = 0
82 Pieces = '2,3'
83 Sorted = False
84 SynonymChars = '<>'
85 TabOrder = 2
86 OnChange = cboSrcListChange
87 OnKeyDown = cboSrcListKeyDown
88 OnMouseClick = cboSrcListMouseClick
89 OnNeedData = cboSrcListNeedData
90 CharsNeedMatch = 1
91 end
92 object DstList: TORListBox
93 Left = 231
94 Top = 155
95 Width = 144
96 Height = 185
97 ItemHeight = 13
98 MultiSelect = True
99 ParentShowHint = False
100 ShowHint = True
101 TabOrder = 4
102 OnClick = DstListChange
103 Caption = 'Currently selected recipients'
104 ItemTipColor = clWindow
105 LongList = False
106 Pieces = '2'
107 OnChange = DstListChange
108 end
109 object memAlert: TMemo
110 Left = 12
111 Top = 8
112 Width = 363
113 Height = 33
114 TabStop = False
115 Color = clBtnFace
116 Lines.Strings = (
117 'memAlert')
118 ReadOnly = True
119 TabOrder = 0
120 WantReturns = False
121 end
122 object memComment: TMemo
123 Left = 12
124 Top = 64
125 Width = 363
126 Height = 49
127 MaxLength = 180
128 ScrollBars = ssVertical
129 TabOrder = 1
130 end
131 object btnAddAlert: TButton
132 Left = 162
133 Top = 200
134 Width = 63
135 Height = 25
136 Caption = '&Add'
137 TabOrder = 3
138 OnClick = btnAddAlertClick
139 end
140 object btnRemoveAlertFwrd: TButton
141 Left = 162
142 Top = 231
143 Width = 63
144 Height = 25
145 Caption = '&Remove'
146 Enabled = False
147 TabOrder = 5
148 OnClick = btnRemoveAlertFwrdClick
149 end
150 object btnRemoveAllAlertFwrd: TButton
151 Left = 162
152 Top = 262
153 Width = 63
154 Height = 25
155 Caption = 'R&emove All'
156 Enabled = False
157 TabOrder = 6
158 OnClick = btnRemoveAllAlertFwrdClick
159 end
160 end
161 inherited amgrMain: TVA508AccessibilityManager
162 Left = 56
163 Top = 72
164 Data = (
165 (
166 'Component = pnlBase'
167 'Status = stsDefault')
168 (
169 'Component = cmdOK'
170 'Status = stsDefault')
171 (
172 'Component = cmdCancel'
173 'Status = stsDefault')
174 (
175 'Component = cboSrcList'
176 'Label = SrcLabel'
177 'Status = stsOK')
178 (
179 'Component = DstList'
180 'Status = stsDefault')
181 (
182 'Component = memAlert'
183 'Status = stsDefault')
184 (
185 'Component = memComment'
186 'Status = stsDefault')
187 (
188 'Component = btnAddAlert'
189 'Status = stsDefault')
190 (
191 'Component = btnRemoveAlertFwrd'
192 'Status = stsDefault')
193 (
194 'Component = frmAlertForward'
195 'Status = stsDefault')
196 (
197 'Component = btnRemoveAllAlertFwrd'
198 'Status = stsDefault'))
199 end
200end
Note: See TracBrowser for help on using the repository browser.