source: cprs/branches/foia-cprs/CPRS-Chart/fAddlSigners.dfm@ 459

Last change on this file since 459 was 459, checked in by Kevin Toppenberg, 16 years ago

Adding foia-cprs branch

File size: 4.9 KB
Line 
1object frmAddlSigners: TfrmAddlSigners
2 Left = 275
3 Top = 164
4 BorderStyle = bsDialog
5 Caption = 'Identify Additional Signers'
6 ClientHeight = 362
7 ClientWidth = 403
8 Color = clBtnFace
9 Font.Charset = DEFAULT_CHARSET
10 Font.Color = clWindowText
11 Font.Height = -11
12 Font.Name = 'MS Sans Serif'
13 Font.Style = []
14 OldCreateOrder = True
15 Position = poScreenCenter
16 OnCreate = FormCreate
17 OnDestroy = FormDestroy
18 PixelsPerInch = 96
19 TextHeight = 13
20 object pnlBase: TPanel
21 Left = 0
22 Top = 0
23 Width = 403
24 Height = 362
25 Align = alClient
26 BevelOuter = bvNone
27 TabOrder = 0
28 object pnlButtons: TORAutoPanel
29 Left = 0
30 Top = 309
31 Width = 403
32 Height = 53
33 Align = alBottom
34 BevelOuter = bvNone
35 TabOrder = 2
36 object cmdOK: TButton
37 Left = 125
38 Top = 14
39 Width = 75
40 Height = 25
41 Caption = 'OK'
42 TabOrder = 0
43 OnClick = cmdOKClick
44 end
45 object cmdCancel: TButton
46 Left = 215
47 Top = 14
48 Width = 75
49 Height = 25
50 Cancel = True
51 Caption = 'Cancel'
52 TabOrder = 1
53 OnClick = cmdCancelClick
54 end
55 end
56 object pnlAdditional: TORAutoPanel
57 Left = 0
58 Top = 70
59 Width = 403
60 Height = 239
61 Align = alClient
62 TabOrder = 1
63 object SrcLabel: TLabel
64 Left = 11
65 Top = 15
66 Width = 175
67 Height = 16
68 AutoSize = False
69 Caption = 'Select or enter additional signers'
70 end
71 object DstLabel: TLabel
72 Left = 214
73 Top = 16
74 Width = 145
75 Height = 16
76 AutoSize = False
77 Caption = 'Current additional signers'
78 end
79 object cboSrcList: TORComboBox
80 Left = 11
81 Top = 33
82 Width = 174
83 Height = 185
84 Style = orcsSimple
85 AutoSelect = True
86 Caption = 'Select or enter additional signers'
87 Color = clWindow
88 DropDownCount = 8
89 ItemHeight = 13
90 ItemTipColor = clWindow
91 ItemTipEnable = True
92 ListItemsOnly = True
93 LongList = True
94 LookupPiece = 2
95 MaxLength = 0
96 Pieces = '2,3'
97 Sorted = False
98 SynonymChars = '<>'
99 TabOrder = 0
100 TabStop = True
101 OnClick = cboSrcListClick
102 OnKeyDown = cboSrcListKeyDown
103 OnMouseClick = cboSrcListMouseClick
104 OnNeedData = NewPersonNeedData
105 end
106 object DstList: TORListBox
107 Left = 213
108 Top = 33
109 Width = 174
110 Height = 185
111 ItemHeight = 13
112 MultiSelect = True
113 ParentShowHint = False
114 ShowHint = True
115 TabOrder = 1
116 OnClick = DstListClick
117 Caption = 'Current additional signers'
118 ItemTipColor = clWindow
119 LongList = False
120 Pieces = '2'
121 end
122 object cmdRemove: TButton
123 Left = 264
124 Top = 221
125 Width = 75
126 Height = 25
127 Caption = 'Remove'
128 TabOrder = 2
129 Visible = False
130 OnClick = cmdRemoveClick
131 end
132 end
133 object pnlTop: TORAutoPanel
134 Left = 0
135 Top = 0
136 Width = 403
137 Height = 70
138 Align = alTop
139 BevelOuter = bvNone
140 TabOrder = 0
141 object lblAuthor: TOROffsetLabel
142 Left = 12
143 Top = 9
144 Width = 97
145 Height = 15
146 Caption = 'Author (not editable)'
147 HorzOffset = 2
148 Transparent = False
149 VertOffset = 2
150 WordWrap = False
151 end
152 object lblCosigner: TOROffsetLabel
153 Left = 213
154 Top = 10
155 Width = 155
156 Height = 15
157 Caption = 'Expected Cosigner (not editable)'
158 HorzOffset = 2
159 Transparent = False
160 VertOffset = 2
161 WordWrap = False
162 end
163 object cboCosigner: TORComboBox
164 Left = 214
165 Top = 26
166 Width = 174
167 Height = 21
168 Style = orcsDropDown
169 AutoSelect = True
170 Caption = 'object lblCosigner: TOROffsetLabel'
171 Color = clCream
172 DropDownCount = 8
173 Enabled = False
174 ItemHeight = 13
175 ItemTipColor = clWindow
176 ItemTipEnable = True
177 ListItemsOnly = True
178 LongList = True
179 LookupPiece = 0
180 MaxLength = 0
181 Pieces = '2,3'
182 Sorted = False
183 SynonymChars = '<>'
184 TabOrder = 1
185 TabStop = True
186 OnChange = cboCosignerChange
187 OnExit = cboCosignerExit
188 OnNeedData = cboCosignerNeedData
189 end
190 object txtAuthor: TCaptionEdit
191 Left = 14
192 Top = 27
193 Width = 178
194 Height = 21
195 TabStop = False
196 AutoSize = False
197 Color = clCream
198 ReadOnly = True
199 TabOrder = 0
200 Caption = 'Author (not editable)'
201 end
202 end
203 end
204end
Note: See TracBrowser for help on using the repository browser.