-
Notifications
You must be signed in to change notification settings - Fork 148
/
CalcSubnet.Designer.vb
119 lines (114 loc) · 4.44 KB
/
CalcSubnet.Designer.vb
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
Imports WakeOnLan.Controls
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class CalcSubnet
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()> _
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
Try
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
Finally
MyBase.Dispose(disposing)
End Try
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(CalcSubnet))
Me.bCalculate = New System.Windows.Forms.Button()
Me.bOK = New System.Windows.Forms.Button()
Me.IpBroadcast = New WakeOnLan.Controls.IpAddressControl()
Me.IpSubnet = New WakeOnLan.Controls.IpAddressControl()
Me.IpIP = New WakeOnLan.Controls.IpAddressControl()
Me.lIP = New System.Windows.Forms.Label()
Me.lSubnet = New System.Windows.Forms.Label()
Me.lRecommended = New System.Windows.Forms.Label()
Me.lHeader = New System.Windows.Forms.Label()
Me.SuspendLayout()
'
'bCalculate
'
resources.ApplyResources(Me.bCalculate, "bCalculate")
Me.bCalculate.Name = "bCalculate"
Me.bCalculate.UseVisualStyleBackColor = True
'
'bOK
'
resources.ApplyResources(Me.bOK, "bOK")
Me.bOK.Name = "bOK"
Me.bOK.UseVisualStyleBackColor = True
'
'IpBroadcast
'
resources.ApplyResources(Me.IpBroadcast, "IpBroadcast")
Me.IpBroadcast.BackColor = System.Drawing.SystemColors.Window
Me.IpBroadcast.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.IpBroadcast.Name = "IpBroadcast"
'
'IpSubnet
'
resources.ApplyResources(Me.IpSubnet, "IpSubnet")
Me.IpSubnet.BackColor = System.Drawing.SystemColors.Window
Me.IpSubnet.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.IpSubnet.Name = "IpSubnet"
'
'IpIP
'
resources.ApplyResources(Me.IpIP, "IpIP")
Me.IpIP.BackColor = System.Drawing.SystemColors.Window
Me.IpIP.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.IpIP.Name = "IpIP"
'
'lIP
'
resources.ApplyResources(Me.lIP, "lIP")
Me.lIP.Name = "lIP"
'
'lSubnet
'
resources.ApplyResources(Me.lSubnet, "lSubnet")
Me.lSubnet.Name = "lSubnet"
'
'lRecommended
'
resources.ApplyResources(Me.lRecommended, "lRecommended")
Me.lRecommended.Name = "lRecommended"
'
'lHeader
'
resources.ApplyResources(Me.lHeader, "lHeader")
Me.lHeader.Name = "lHeader"
'
'CalcSubnet
'
resources.ApplyResources(Me, "$this")
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.Controls.Add(Me.lHeader)
Me.Controls.Add(Me.lRecommended)
Me.Controls.Add(Me.lSubnet)
Me.Controls.Add(Me.lIP)
Me.Controls.Add(Me.bOK)
Me.Controls.Add(Me.bCalculate)
Me.Controls.Add(Me.IpBroadcast)
Me.Controls.Add(Me.IpSubnet)
Me.Controls.Add(Me.IpIP)
Me.Name = "CalcSubnet"
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents IpIP As IPAddressControl
Friend WithEvents IpSubnet As IPAddressControl
Friend WithEvents IpBroadcast As IPAddressControl
Friend WithEvents bCalculate As System.Windows.Forms.Button
Friend WithEvents bOK As System.Windows.Forms.Button
Friend WithEvents lIP As System.Windows.Forms.Label
Friend WithEvents lSubnet As System.Windows.Forms.Label
Friend WithEvents lRecommended As System.Windows.Forms.Label
Friend WithEvents lHeader As System.Windows.Forms.Label
End Class