-
Notifications
You must be signed in to change notification settings - Fork 4
/
Main.dfm
95 lines (95 loc) · 1.87 KB
/
Main.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
89
90
91
92
93
94
95
object Form1: TForm1
Left = 399
Top = 247
ActiveControl = Button1
Caption = ' 04 - HTTP Server'
ClientHeight = 231
ClientWidth = 432
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = True
OnCreate = FormCreate
OnDestroy = FormDestroy
OnShow = FormShow
DesignSize = (
432
231)
PixelsPerInch = 96
TextHeight = 16
object Label1: TLabel
Left = 8
Top = 8
Width = 297
Height = 33
Alignment = taCenter
AutoSize = False
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clTeal
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object Label2: TLabel
Left = 56
Top = 56
Width = 187
Height = 48
Alignment = taCenter
Caption =
'HTTP Server is running on 8080.'#13#10'Also serving /WebContent'#13#10'at lo' +
'calhost:8080/static'
Color = clBtnFace
ParentColor = False
WordWrap = True
end
object Button1: TButton
Left = 344
Top = 72
Width = 80
Height = 32
Caption = 'Quit'
TabOrder = 0
OnClick = Button1Click
end
object btnOpen: TButton
Left = 344
Top = 40
Width = 80
Height = 29
Caption = 'Open site'
TabOrder = 1
OnClick = btnOpenClick
end
object Memo1: TMemo
Left = 8
Top = 112
Width = 416
Height = 112
Anchors = [akLeft, akTop, akRight, akBottom]
Lines.Strings = (
'Memo1')
ScrollBars = ssVertical
TabOrder = 2
end
object btnRoot: TButton
Left = 344
Top = 8
Width = 80
Height = 29
Caption = 'Select root'
TabOrder = 3
OnClick = btnRootClick
end
object OpenDialog1: TOpenDialog
Filter = 'html|*.html|htm|*.htm|all|*.*'
Left = 274
Top = 62
end
end