blob: 559f5cf366178f2cbcd4387c122967d932592cd2 (
plain)
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
75
|
object EmptyHistoryFrm: TEmptyHistoryFrm
Left = 346
Top = 283
BorderStyle = bsDialog
BorderWidth = 8
Caption = 'Empty History'
ClientHeight = 65
ClientWidth = 274
Color = clBtnFace
DefaultMonitor = dmDesktop
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
FormStyle = fsStayOnTop
KeyPreview = True
OldCreateOrder = True
Position = poScreenCenter
OnCreate = FormCreate
OnKeyDown = FormKeyDown
OnShow = FormShow
DesignSize = (
274
65)
PixelsPerInch = 96
TextHeight = 13
object Image: TImage
Left = 0
Top = 0
Width = 32
Height = 32
end
object Text: TLabel
Left = 42
Top = 0
Width = 232
Height = 32
Anchors = [akLeft, akTop, akRight]
AutoSize = False
Layout = tlCenter
WordWrap = True
end
object paButtons: TPanel
Left = 0
Top = 40
Width = 274
Height = 25
Align = alBottom
AutoSize = True
BevelOuter = bvNone
TabOrder = 0
ExplicitTop = 54
object btYes: TButton
Left = 0
Top = 0
Width = 75
Height = 25
Caption = 'Yes'
ModalResult = 6
TabOrder = 0
OnClick = btYesClick
end
object btNo: TButton
Left = 85
Top = 0
Width = 75
Height = 25
Cancel = True
Caption = 'No'
ModalResult = 7
TabOrder = 1
end
end
end
|