_ Partial Class frmConnection 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() Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmConnection)) Me.boxDetails = New System.Windows.Forms.GroupBox Me.cmdSplit = New System.Windows.Forms.Button Me.lblPort = New System.Windows.Forms.Label Me.txtPort = New System.Windows.Forms.TextBox Me.lblHost = New System.Windows.Forms.Label Me.cmdConnect = New System.Windows.Forms.Button Me.txtHost = New System.Windows.Forms.TextBox Me.lblHeader = New System.Windows.Forms.Label Me.boxDetails.SuspendLayout() Me.SuspendLayout() ' 'boxDetails ' Me.boxDetails.Controls.Add(Me.cmdSplit) Me.boxDetails.Controls.Add(Me.lblPort) Me.boxDetails.Controls.Add(Me.txtPort) Me.boxDetails.Controls.Add(Me.lblHost) Me.boxDetails.Controls.Add(Me.cmdConnect) Me.boxDetails.Controls.Add(Me.txtHost) Me.boxDetails.Location = New System.Drawing.Point(7, 46) Me.boxDetails.Name = "boxDetails" Me.boxDetails.Size = New System.Drawing.Size(289, 163) Me.boxDetails.TabIndex = 0 Me.boxDetails.TabStop = False Me.boxDetails.Text = "Connection details" ' 'cmdSplit ' Me.cmdSplit.FlatStyle = System.Windows.Forms.FlatStyle.Flat Me.cmdSplit.Image = CType(resources.GetObject("cmdSplit.Image"), System.Drawing.Image) Me.cmdSplit.Location = New System.Drawing.Point(5, 117) Me.cmdSplit.Name = "cmdSplit" Me.cmdSplit.Size = New System.Drawing.Size(131, 40) Me.cmdSplit.TabIndex = 5 Me.cmdSplit.Text = "Split from loader" Me.cmdSplit.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText Me.cmdSplit.UseVisualStyleBackColor = True ' 'lblPort ' Me.lblPort.AutoSize = True Me.lblPort.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.lblPort.Location = New System.Drawing.Point(12, 70) Me.lblPort.Name = "lblPort" Me.lblPort.Size = New System.Drawing.Size(30, 13) Me.lblPort.TabIndex = 4 Me.lblPort.Text = "Port" ' 'txtPort ' Me.txtPort.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle Me.txtPort.Location = New System.Drawing.Point(12, 86) Me.txtPort.Name = "txtPort" Me.txtPort.Size = New System.Drawing.Size(273, 20) Me.txtPort.TabIndex = 3 Me.txtPort.Text = "1232" ' 'lblHost ' Me.lblHost.AutoSize = True Me.lblHost.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.lblHost.Location = New System.Drawing.Point(12, 22) Me.lblHost.Name = "lblHost" Me.lblHost.Size = New System.Drawing.Size(99, 13) Me.lblHost.TabIndex = 2 Me.lblHost.Text = "Host/IP address" ' 'cmdConnect ' Me.cmdConnect.FlatStyle = System.Windows.Forms.FlatStyle.Flat Me.cmdConnect.Image = CType(resources.GetObject("cmdConnect.Image"), System.Drawing.Image) Me.cmdConnect.Location = New System.Drawing.Point(152, 117) Me.cmdConnect.Name = "cmdConnect" Me.cmdConnect.Size = New System.Drawing.Size(131, 40) Me.cmdConnect.TabIndex = 1 Me.cmdConnect.Text = "Establish connection" Me.cmdConnect.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText Me.cmdConnect.UseVisualStyleBackColor = True ' 'txtHost ' Me.txtHost.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle Me.txtHost.Location = New System.Drawing.Point(12, 38) Me.txtHost.Name = "txtHost" Me.txtHost.Size = New System.Drawing.Size(273, 20) Me.txtHost.TabIndex = 1 Me.txtHost.Text = "game.theretro.com" ' 'lblHeader ' Me.lblHeader.Font = New System.Drawing.Font("Tahoma", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.lblHeader.Location = New System.Drawing.Point(2, -2) Me.lblHeader.Name = "lblHeader" Me.lblHeader.Size = New System.Drawing.Size(294, 45) Me.lblHeader.TabIndex = 1 Me.lblHeader.Text = "Connection" Me.lblHeader.TextAlign = System.Drawing.ContentAlignment.MiddleCenter ' 'frmConnection ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(303, 211) Me.Controls.Add(Me.lblHeader) Me.Controls.Add(Me.boxDetails) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon) Me.MaximizeBox = False Me.MinimizeBox = False Me.Name = "frmConnection" Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen Me.Text = "Nillus Retro Commander : connection" Me.boxDetails.ResumeLayout(False) Me.boxDetails.PerformLayout() Me.ResumeLayout(False) End Sub Friend WithEvents boxDetails As System.Windows.Forms.GroupBox Friend WithEvents lblHeader As System.Windows.Forms.Label Friend WithEvents lblPort As System.Windows.Forms.Label Friend WithEvents txtPort As System.Windows.Forms.TextBox Friend WithEvents lblHost As System.Windows.Forms.Label Friend WithEvents cmdConnect As System.Windows.Forms.Button Friend WithEvents txtHost As System.Windows.Forms.TextBox Friend WithEvents cmdSplit As System.Windows.Forms.Button End Class