-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnit1.~dfm
105 lines (105 loc) · 2.05 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
object Form1: TForm1
Left = 487
Top = 194
Width = 594
Height = 527
Caption = 'IpScanner'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
OnCanResize = FormCanResize
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object FromIpLbl: TLabel
Left = 52
Top = 23
Width = 110
Height = 13
Caption = 'Enter Start IP Address :'
end
object ToIpLbl: TLabel
Left = 53
Top = 60
Width = 101
Height = 13
Caption = 'Enter End IP Address'
end
object NoOfThreadsLbl: TLabel
Left = 53
Top = 94
Width = 130
Height = 13
Caption = 'Enter Number Of Threads :'
end
object FromIpTxt: TEdit
Left = 242
Top = 20
Width = 121
Height = 21
TabOrder = 0
OnKeyPress = FromIpTxtKeyPress
OnKeyUp = FromIpTxtKeyUp
end
object ToIpTxt: TEdit
Left = 243
Top = 56
Width = 121
Height = 21
TabOrder = 1
OnKeyPress = ToIpTxtKeyPress
OnKeyUp = ToIpTxtKeyUp
end
object NoOfThreadsTxt: TEdit
Left = 245
Top = 88
Width = 121
Height = 21
TabOrder = 2
OnKeyPress = NoOfThreadsTxtKeyPress
OnKeyUp = NoOfThreadsTxtKeyUp
end
object ScanBtn: TButton
Left = 400
Top = 112
Width = 75
Height = 25
Caption = 'Scan'
TabOrder = 3
OnClick = ScanBtnClick
end
object StopBtn: TButton
Left = 488
Top = 112
Width = 75
Height = 25
Caption = 'Stop'
TabOrder = 4
end
object ListViewIp: TListView
Left = 8
Top = 144
Width = 561
Height = 337
Columns = <
item
Caption = 'IP Address'
Width = 275
end
item
Caption = 'Host Name'
Width = 282
end>
GridLines = True
ReadOnly = True
RowSelect = True
ParentShowHint = False
ShowHint = True
TabOrder = 5
ViewStyle = vsReport
end
end