_ Partial Class uploadMcSeq 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(uploadMcSeq)) Me.GroupBox1 = New System.Windows.Forms.GroupBox() Me.btn_cancel = New System.Windows.Forms.Button() Me.btn_upload = New System.Windows.Forms.Button() Me.btn_browse = New System.Windows.Forms.Button() Me.txtFName = New System.Windows.Forms.TextBox() Me.Label1 = New System.Windows.Forms.Label() Me.OpenFileDialog1 = New System.Windows.Forms.OpenFileDialog() Me.GroupBox1.SuspendLayout() Me.SuspendLayout() ' 'GroupBox1 ' Me.GroupBox1.Controls.Add(Me.btn_cancel) Me.GroupBox1.Controls.Add(Me.btn_upload) Me.GroupBox1.Controls.Add(Me.btn_browse) Me.GroupBox1.Controls.Add(Me.txtFName) Me.GroupBox1.Controls.Add(Me.Label1) Me.GroupBox1.Location = New System.Drawing.Point(0, 2) Me.GroupBox1.Name = "GroupBox1" Me.GroupBox1.Size = New System.Drawing.Size(406, 117) Me.GroupBox1.TabIndex = 0 Me.GroupBox1.TabStop = False Me.GroupBox1.Text = "Choose File to Upload" ' 'btn_cancel ' Me.btn_cancel.Location = New System.Drawing.Point(214, 86) Me.btn_cancel.Name = "btn_cancel" Me.btn_cancel.Size = New System.Drawing.Size(75, 23) Me.btn_cancel.TabIndex = 4 Me.btn_cancel.Text = "Cancel" Me.btn_cancel.UseVisualStyleBackColor = True ' 'btn_upload ' Me.btn_upload.Location = New System.Drawing.Point(111, 86) Me.btn_upload.Name = "btn_upload" Me.btn_upload.Size = New System.Drawing.Size(75, 23) Me.btn_upload.TabIndex = 3 Me.btn_upload.Text = "Upload File" Me.btn_upload.UseVisualStyleBackColor = True ' 'btn_browse ' Me.btn_browse.Image = CType(resources.GetObject("btn_browse.Image"), System.Drawing.Image) Me.btn_browse.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft Me.btn_browse.Location = New System.Drawing.Point(358, 49) Me.btn_browse.Name = "btn_browse" Me.btn_browse.Size = New System.Drawing.Size(32, 32) Me.btn_browse.TabIndex = 2 Me.btn_browse.UseVisualStyleBackColor = True ' 'txtFName ' Me.txtFName.Location = New System.Drawing.Point(37, 56) Me.txtFName.Name = "txtFName" Me.txtFName.Size = New System.Drawing.Size(317, 20) Me.txtFName.TabIndex = 1 ' 'Label1 ' Me.Label1.AutoSize = True Me.Label1.Location = New System.Drawing.Point(11, 57) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(26, 13) Me.Label1.TabIndex = 0 Me.Label1.Text = "File:" ' 'OpenFileDialog1 ' Me.OpenFileDialog1.FileName = "OpenFileDialog1" ' 'uploadMcSeq ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(405, 119) Me.ControlBox = False Me.Controls.Add(Me.GroupBox1) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle Me.Name = "uploadMcSeq" Me.StartPosition = System.Windows.Forms.FormStartPosition.Manual Me.Text = "Upload Machine Sequence" Me.GroupBox1.ResumeLayout(False) Me.GroupBox1.PerformLayout() Me.ResumeLayout(False) End Sub Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox Friend WithEvents txtFName As System.Windows.Forms.TextBox Friend WithEvents Label1 As System.Windows.Forms.Label Friend WithEvents OpenFileDialog1 As System.Windows.Forms.OpenFileDialog Friend WithEvents btn_browse As System.Windows.Forms.Button Friend WithEvents btn_cancel As System.Windows.Forms.Button Friend WithEvents btn_upload As System.Windows.Forms.Button End Class