Changeset 281
- Timestamp:
- Oct 5, 2011, 6:14:15 PM (13 years ago)
- Location:
- ExceptionLogger
- Files:
-
- 8 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
ExceptionLogger/ExceptionLogger.lpk
r264 r281 17 17 </SyntaxOptions> 18 18 </Parsing> 19 <Linking> 20 <Debugging> 21 <GenerateDebugInfo Value="True"/> 22 <DebugInfoType Value="dsAuto"/> 23 </Debugging> 24 </Linking> 19 25 <Other> 20 26 <CompilerMessages> … … 27 33 <License Value="GNU/GPL"/> 28 34 <Version Major="1"/> 29 <Files Count=" 5">35 <Files Count="6"> 30 36 <Item1> 31 37 <Filename Value="CustomLineInfo.pas"/> … … 49 55 <UnitName Value="UExceptionLogger"/> 50 56 </Item5> 57 <Item6> 58 <Filename Value="ReadMe.txt"/> 59 <Type Value="Binary"/> 60 </Item6> 51 61 </Files> 52 62 <i18n> -
ExceptionLogger/UExceptionForm.lfm
r265 r281 3 3 Height = 316 4 4 Top = 184 5 Width = 4405 Width = 506 6 6 Caption = 'Exception info' 7 7 ClientHeight = 316 8 ClientWidth = 4408 ClientWidth = 506 9 9 OnCreate = FormCreate 10 10 OnDestroy = FormDestroy … … 16 16 Height = 80 17 17 Top = 0 18 Width = 44018 Width = 506 19 19 Align = alTop 20 20 BevelOuter = bvNone 21 21 ClientHeight = 80 22 ClientWidth = 44022 ClientWidth = 506 23 23 TabOrder = 0 24 24 object Image1: TImage … … 135 135 object Label1: TLabel 136 136 Left = 69 137 Height = 1 4137 Height = 18 138 138 Top = 8 139 Width = 196139 Width = 260 140 140 Caption = 'Error occured during program execution:' 141 141 ParentColor = False … … 157 157 Height = 204 158 158 Top = 80 159 Width = 440159 Width = 506 160 160 Align = alClient 161 161 BevelOuter = bvNone 162 162 ClientHeight = 204 163 ClientWidth = 440163 ClientWidth = 506 164 164 TabOrder = 1 165 165 object PageControl1: TPageControl … … 167 167 Height = 202 168 168 Top = 0 169 Width = 4 27169 Width = 493 170 170 ActivePage = TabSheet2 171 171 Anchors = [akTop, akLeft, akRight, akBottom] … … 174 174 object TabSheet1: TTabSheet 175 175 Caption = 'General' 176 ClientHeight = 1 90177 ClientWidth = 670176 ClientHeight = 167 177 ClientWidth = 487 178 178 object MemoExceptionInfo: TMemo 179 179 Left = 4 … … 190 190 object TabSheet2: TTabSheet 191 191 Caption = 'Call stack' 192 ClientHeight = 1 76193 ClientWidth = 4 19192 ClientHeight = 167 193 ClientWidth = 487 194 194 object ListView1: TListView 195 195 Left = 4 196 Height = 1 66196 Height = 157 197 197 Top = 7 198 Width = 4 13198 Width = 481 199 199 Anchors = [akTop, akLeft, akRight, akBottom] 200 200 Columns = < … … 235 235 Height = 32 236 236 Top = 284 237 Width = 440237 Width = 506 238 238 Align = alBottom 239 239 BevelOuter = bvNone 240 240 ClientHeight = 32 241 ClientWidth = 440241 ClientWidth = 506 242 242 TabOrder = 2 243 243 object ButtonKill: TButton 244 Left = 296244 Left = 344 245 245 Height = 25 246 Top = 4247 Width = 67246 Top = 3 247 Width = 83 248 248 Anchors = [akRight, akBottom] 249 249 Caption = 'Terminate' … … 252 252 end 253 253 object ButtonClose: TButton 254 Left = 368254 Left = 432 255 255 Height = 25 256 Top = 4256 Top = 3 257 257 Width = 67 258 258 Anchors = [akRight, akBottom] … … 263 263 object CheckBoxIgnore: TCheckBox 264 264 Left = 10 265 Height = 17266 Top = 8267 Width = 169265 Height = 22 266 Top = 3 267 Width = 224 268 268 Anchors = [akLeft, akBottom] 269 269 Caption = 'Next time ignore this exception' … … 271 271 end 272 272 object ButtonDetails: TButton 273 Left = 2 16273 Left = 264 274 274 Height = 25 275 Top = 4275 Top = 3 276 276 Width = 75 277 277 Anchors = [akRight, akBottom] -
ExceptionLogger/UExceptionForm.pas
r265 r281 10 10 11 11 type 12 13 { TMainForm }14 12 15 13 { TExceptionForm } … … 89 87 procedure TExceptionForm.ButtonDetailsClick(Sender: TObject); 90 88 begin 91 if PanelDescription.Height = 0then89 if PanelDescription.Height <= 1 then 92 90 Height := PanelBasic.Height + PanelButtons.Height + 200 93 91 else Height := PanelBasic.Height + PanelButtons.Height;
Note:
See TracChangeset
for help on using the changeset viewer.