-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLog.dfm
74 lines (74 loc) · 1.48 KB
/
Log.dfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
object LogForm: TLogForm
Left = 310
Top = 136
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'Error Log'
ClientHeight = 380
ClientWidth = 441
Color = clBtnFace
Font.Charset = RUSSIAN_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
OnClose = FormClose
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 112
Top = 16
Width = 215
Height = 16
Caption = 'Oops!.. Something goes wrong:'
Font.Charset = RUSSIAN_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object LogMemo: TJvMemo
Left = 0
Top = 48
Width = 441
Height = 273
AutoSize = False
MaxLines = 0
HideCaret = False
ReadOnly = True
ScrollBars = ssBoth
TabOrder = 0
OnKeyPress = LogMemoKeyPress
end
object ContinueBtn: TButton
Left = 88
Top = 336
Width = 81
Height = 25
Caption = '[>] Continue'
TabOrder = 1
OnClick = ContinueBtnClick
end
object CloseBtn: TButton
Left = 184
Top = 336
Width = 81
Height = 25
Caption = '[x] Close App'
TabOrder = 2
OnClick = CloseBtnClick
end
object TerminateBtn: TButton
Left = 280
Top = 336
Width = 81
Height = 25
Caption = '[X] HALT'
TabOrder = 3
OnClick = TerminateBtnClick
end
end