-
Notifications
You must be signed in to change notification settings - Fork 0
/
irc_translator.dfm
85 lines (85 loc) · 1.66 KB
/
irc_translator.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
object Form1: TForm1
Left = 192
Top = 114
BorderStyle = bsSingle
Caption = ':: zonk : Bot ::'
ClientHeight = 443
ClientWidth = 478
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
Menu = MainMenu1
OldCreateOrder = False
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object Edit1: TEdit
Left = 8
Top = 350
Width = 462
Height = 21
TabOrder = 0
OnKeyDown = Edit1KeyDown
end
object Memo1: TMemo
Left = 8
Top = 8
Width = 462
Height = 74
Lines.Strings = (
'Memo1')
TabOrder = 1
end
object Memo2: TMemo
Left = 8
Top = 88
Width = 462
Height = 256
Lines.Strings = (
'Memo2')
TabOrder = 2
end
object cs: TClientSocket
Active = False
ClientType = ctNonBlocking
Port = 0
OnConnect = csConnect
OnDisconnect = csDisconnect
OnRead = csRead
OnError = csError
Left = 8
Top = 408
end
object Timer1: TTimer
Enabled = False
Left = 48
Top = 408
end
object MainMenu1: TMainMenu
Left = 103
Top = 396
object Main1: TMenuItem
Caption = 'Main'
object Start1: TMenuItem
Caption = 'Start'
OnClick = Start1Click
end
object Stop1: TMenuItem
Caption = 'Stop'
OnClick = Stop1Click
end
object N1: TMenuItem
Caption = '-'
end
end
object N2: TMenuItem
Caption = '?'
object About1: TMenuItem
Caption = 'About'
end
end
end
end