This repository was archived by the owner on Dec 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnit1.dfm
88 lines (88 loc) · 1.84 KB
/
Unit1.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
object Form1: TForm1
Left = 0
Top = 0
Caption = 'Form1'
ClientHeight = 411
ClientWidth = 852
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
PixelsPerInch = 96
TextHeight = 13
object memoLog: TMemo
AlignWithMargins = True
Left = 3
Top = 36
Width = 846
Height = 372
Align = alClient
Lines.Strings = (
'memoLog')
ReadOnly = True
ScrollBars = ssBoth
TabOrder = 0
WordWrap = False
end
object pTop: TPanel
Left = 0
Top = 0
Width = 852
Height = 33
Align = alTop
BevelOuter = bvNone
ShowCaption = False
TabOrder = 1
object btnStartLogger: TButton
AlignWithMargins = True
Left = 3
Top = 3
Width = 75
Height = 27
Align = alLeft
Caption = 'Start loggers'
TabOrder = 0
OnClick = btnStartLoggerClick
ExplicitLeft = 8
ExplicitTop = 8
ExplicitHeight = 25
end
object btnSendLogMessages: TButton
AlignWithMargins = True
Left = 165
Top = 3
Width = 108
Height = 27
Align = alLeft
Caption = 'Send log message'
TabOrder = 1
OnClick = btnSendLogMessagesClick
end
object btnStoploggers: TButton
AlignWithMargins = True
Left = 84
Top = 3
Width = 75
Height = 27
Align = alLeft
Caption = 'Stop loggers'
TabOrder = 2
OnClick = btnStoploggersClick
ExplicitLeft = 147
end
object seLoggerCount: TSpinEdit
AlignWithMargins = True
Left = 279
Top = 6
Width = 121
Height = 22
MaxValue = 10
MinValue = 1
TabOrder = 3
Value = 3
end
end
end