_ Partial Class Form1 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.TextBox1 = New System.Windows.Forms.TextBox Me.btn1 = New System.Windows.Forms.Button Me.btn2 = New System.Windows.Forms.Button Me.lblone = New System.Windows.Forms.Label Me.ListBox1 = New System.Windows.Forms.ListBox Me.btn3 = New System.Windows.Forms.Button Me.SuspendLayout() ' 'TextBox1 ' Me.TextBox1.Location = New System.Drawing.Point(93, 179) Me.TextBox1.Name = "TextBox1" Me.TextBox1.Size = New System.Drawing.Size(202, 20) Me.TextBox1.TabIndex = 0 ' 'btn1 ' Me.btn1.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer), CType(CType(128, Byte), Integer)) Me.btn1.Font = New System.Drawing.Font("Times New Roman", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.btn1.Location = New System.Drawing.Point(7, 95) Me.btn1.Name = "btn1" Me.btn1.Size = New System.Drawing.Size(99, 23) Me.btn1.TabIndex = 1 Me.btn1.Text = "ADD NEXT" Me.btn1.UseVisualStyleBackColor = False ' 'btn2 ' Me.btn2.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer)) Me.btn2.Font = New System.Drawing.Font("Times New Roman", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.btn2.Location = New System.Drawing.Point(7, 138) Me.btn2.Name = "btn2" Me.btn2.Size = New System.Drawing.Size(75, 23) Me.btn2.TabIndex = 2 Me.btn2.Text = "AVERAGE" Me.btn2.UseVisualStyleBackColor = False ' 'lblone ' Me.lblone.AutoSize = True Me.lblone.Font = New System.Drawing.Font("Times New Roman", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.lblone.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer)) Me.lblone.Location = New System.Drawing.Point(3, 180) Me.lblone.Name = "lblone" Me.lblone.Size = New System.Drawing.Size(93, 19) Me.lblone.TabIndex = 4 Me.lblone.Text = "FILENAME" ' 'ListBox1 ' Me.ListBox1.FormattingEnabled = True Me.ListBox1.Location = New System.Drawing.Point(123, 40) Me.ListBox1.Name = "ListBox1" Me.ListBox1.Size = New System.Drawing.Size(172, 121) Me.ListBox1.TabIndex = 5 ' 'btn3 ' Me.btn3.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer)) Me.btn3.Font = New System.Drawing.Font("Times New Roman", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.btn3.Location = New System.Drawing.Point(205, 234) Me.btn3.Name = "btn3" Me.btn3.Size = New System.Drawing.Size(90, 25) Me.btn3.TabIndex = 6 Me.btn3.Text = "RESTART" Me.btn3.UseVisualStyleBackColor = False ' 'Form1 ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(224, Byte), Integer), CType(CType(192, Byte), Integer)) Me.ClientSize = New System.Drawing.Size(318, 273) Me.Controls.Add(Me.btn3) Me.Controls.Add(Me.ListBox1) Me.Controls.Add(Me.lblone) Me.Controls.Add(Me.btn2) Me.Controls.Add(Me.btn1) Me.Controls.Add(Me.TextBox1) Me.ForeColor = System.Drawing.Color.Black Me.Name = "Form1" Me.Text = "Form1" Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents TextBox1 As System.Windows.Forms.TextBox Friend WithEvents btn1 As System.Windows.Forms.Button Friend WithEvents btn2 As System.Windows.Forms.Button Friend WithEvents lblone As System.Windows.Forms.Label Friend WithEvents ListBox1 As System.Windows.Forms.ListBox Friend WithEvents btn3 As System.Windows.Forms.Button End Class