_ Partial Class ServerForm Inherits System.Windows.Forms.Form 'Form overrides dispose to clean up the component list. _ 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. _ Private Sub InitializeComponent() Me.ToolStrip1 = New System.Windows.Forms.ToolStrip() Me.ToolStripLabel1 = New System.Windows.Forms.ToolStripLabel() Me.PortTextBox = New System.Windows.Forms.ToolStripTextBox() Me.RichTextBox1 = New System.Windows.Forms.RichTextBox() Me.StartStopButton = New System.Windows.Forms.ToolStripButton() Me.StatusStrip1 = New System.Windows.Forms.StatusStrip() Me.ConnectionCountLabel = New System.Windows.Forms.ToolStripStatusLabel() Me.ToolStrip1.SuspendLayout() Me.StatusStrip1.SuspendLayout() Me.SuspendLayout() ' 'ToolStrip1 ' Me.ToolStrip1.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.ToolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden Me.ToolStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripLabel1, Me.PortTextBox, Me.StartStopButton}) Me.ToolStrip1.Location = New System.Drawing.Point(0, 0) Me.ToolStrip1.Name = "ToolStrip1" Me.ToolStrip1.Padding = New System.Windows.Forms.Padding(4, 0, 1, 0) Me.ToolStrip1.Size = New System.Drawing.Size(331, 25) Me.ToolStrip1.TabIndex = 1 Me.ToolStrip1.Text = "ToolStrip1" ' 'ToolStripLabel1 ' Me.ToolStripLabel1.Name = "ToolStripLabel1" Me.ToolStripLabel1.Size = New System.Drawing.Size(35, 22) Me.ToolStripLabel1.Text = "Port:" ' 'PortTextBox ' Me.PortTextBox.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.PortTextBox.Name = "PortTextBox" Me.PortTextBox.Size = New System.Drawing.Size(64, 25) Me.PortTextBox.Text = "1314" Me.PortTextBox.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Center ' 'RichTextBox1 ' Me.RichTextBox1.Dock = System.Windows.Forms.DockStyle.Fill Me.RichTextBox1.Location = New System.Drawing.Point(0, 25) Me.RichTextBox1.Name = "RichTextBox1" Me.RichTextBox1.ReadOnly = True Me.RichTextBox1.Size = New System.Drawing.Size(331, 296) Me.RichTextBox1.TabIndex = 2 Me.RichTextBox1.Text = "" ' 'StartStopButton ' Me.StartStopButton.CheckOnClick = True Me.StartStopButton.Image = Global.WindowsApplication1.My.Resources.Resources.StartServer Me.StartStopButton.ImageTransparentColor = System.Drawing.Color.Magenta Me.StartStopButton.Name = "StartStopButton" Me.StartStopButton.Size = New System.Drawing.Size(55, 22) Me.StartStopButton.Text = "Start" ' 'StatusStrip1 ' Me.StatusStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ConnectionCountLabel}) Me.StatusStrip1.Location = New System.Drawing.Point(0, 321) Me.StatusStrip1.Name = "StatusStrip1" Me.StatusStrip1.Size = New System.Drawing.Size(331, 22) Me.StatusStrip1.TabIndex = 3 Me.StatusStrip1.Text = "StatusStrip1" ' 'ConnectionCountLabel ' Me.ConnectionCountLabel.Name = "ConnectionCountLabel" Me.ConnectionCountLabel.Size = New System.Drawing.Size(68, 17) Me.ConnectionCountLabel.Text = "0 Connections" ' 'ServerForm ' Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 17.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(331, 343) Me.Controls.Add(Me.RichTextBox1) Me.Controls.Add(Me.StatusStrip1) Me.Controls.Add(Me.ToolStrip1) Me.Font = New System.Drawing.Font("Segoe UI", 9.75!) Me.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) Me.Name = "ServerForm" Me.Text = "Server" Me.ToolStrip1.ResumeLayout(False) Me.ToolStrip1.PerformLayout() Me.StatusStrip1.ResumeLayout(False) Me.StatusStrip1.PerformLayout() Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents ToolStrip1 As System.Windows.Forms.ToolStrip Friend WithEvents ToolStripLabel1 As System.Windows.Forms.ToolStripLabel Friend WithEvents PortTextBox As System.Windows.Forms.ToolStripTextBox Friend WithEvents StartStopButton As System.Windows.Forms.ToolStripButton Friend WithEvents RichTextBox1 As System.Windows.Forms.RichTextBox Friend WithEvents StatusStrip1 As System.Windows.Forms.StatusStrip Friend WithEvents ConnectionCountLabel As System.Windows.Forms.ToolStripStatusLabel End Class