_ 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) If disposing AndAlso components IsNot Nothing Then components.Dispose() End If MyBase.Dispose(disposing) 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.Label1 = New System.Windows.Forms.Label Me.Label2 = New System.Windows.Forms.Label Me.Label3 = New System.Windows.Forms.Label Me.Inext = New System.Windows.Forms.TextBox Me.bEnter = New System.Windows.Forms.Button Me.OResults = New System.Windows.Forms.ListBox Me.BAverage = New System.Windows.Forms.Button Me.BClear = New System.Windows.Forms.Button Me.BExit = New System.Windows.Forms.Button Me.BTotal = New System.Windows.Forms.Button Me.BRestart = New System.Windows.Forms.Button Me.BNew = New System.Windows.Forms.Button Me.BClose = New System.Windows.Forms.Button Me.BNext = New System.Windows.Forms.Button Me.SuspendLayout() ' 'Label1 ' Me.Label1.AutoSize = True Me.Label1.Location = New System.Drawing.Point(211, 9) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(47, 13) Me.Label1.TabIndex = 1 Me.Label1.Text = "Average" ' 'Label2 ' Me.Label2.AutoSize = True Me.Label2.Location = New System.Drawing.Point(12, 299) Me.Label2.Name = "Label2" Me.Label2.Size = New System.Drawing.Size(121, 13) Me.Label2.TabIndex = 2 Me.Label2.Text = "Mark Bernstein 9/22/08" ' 'Label3 ' Me.Label3.AutoSize = True Me.Label3.Location = New System.Drawing.Point(52, 52) Me.Label3.Name = "Label3" Me.Label3.Size = New System.Drawing.Size(117, 13) Me.Label3.TabIndex = 3 Me.Label3.Text = "Enter your number here" ' 'Inext ' Me.Inext.Location = New System.Drawing.Point(214, 52) Me.Inext.Name = "Inext" Me.Inext.Size = New System.Drawing.Size(175, 20) Me.Inext.TabIndex = 4 ' 'bEnter ' Me.bEnter.Location = New System.Drawing.Point(418, 52) Me.bEnter.Name = "bEnter" Me.bEnter.Size = New System.Drawing.Size(81, 26) Me.bEnter.TabIndex = 5 Me.bEnter.Text = "Enter" Me.bEnter.UseVisualStyleBackColor = True ' 'OResults ' Me.OResults.FormattingEnabled = True Me.OResults.Location = New System.Drawing.Point(214, 160) Me.OResults.Name = "OResults" Me.OResults.Size = New System.Drawing.Size(285, 134) Me.OResults.TabIndex = 6 ' 'BAverage ' Me.BAverage.Location = New System.Drawing.Point(132, 160) Me.BAverage.Name = "BAverage" Me.BAverage.Size = New System.Drawing.Size(65, 24) Me.BAverage.TabIndex = 7 Me.BAverage.Text = "Average" Me.BAverage.UseVisualStyleBackColor = True ' 'BClear ' Me.BClear.Location = New System.Drawing.Point(132, 200) Me.BClear.Name = "BClear" Me.BClear.Size = New System.Drawing.Size(65, 22) Me.BClear.TabIndex = 8 Me.BClear.Text = "Clear" Me.BClear.UseVisualStyleBackColor = True ' 'BExit ' Me.BExit.Location = New System.Drawing.Point(15, 252) Me.BExit.Name = "BExit" Me.BExit.Size = New System.Drawing.Size(66, 25) Me.BExit.TabIndex = 9 Me.BExit.Text = "Exit" Me.BExit.UseVisualStyleBackColor = True ' 'BTotal ' Me.BTotal.Location = New System.Drawing.Point(15, 160) Me.BTotal.Name = "BTotal" Me.BTotal.Size = New System.Drawing.Size(66, 24) Me.BTotal.TabIndex = 10 Me.BTotal.Text = "Total" Me.BTotal.UseVisualStyleBackColor = True ' 'BRestart ' Me.BRestart.Location = New System.Drawing.Point(132, 233) Me.BRestart.Name = "BRestart" Me.BRestart.Size = New System.Drawing.Size(65, 21) Me.BRestart.TabIndex = 11 Me.BRestart.Text = "Restart" Me.BRestart.UseVisualStyleBackColor = True ' 'BNew ' Me.BNew.Location = New System.Drawing.Point(147, 78) Me.BNew.Name = "BNew" Me.BNew.Size = New System.Drawing.Size(131, 22) Me.BNew.TabIndex = 12 Me.BNew.Text = "Open New file" Me.BNew.UseVisualStyleBackColor = True ' 'BClose ' Me.BClose.Location = New System.Drawing.Point(331, 84) Me.BClose.Name = "BClose" Me.BClose.Size = New System.Drawing.Size(156, 25) Me.BClose.TabIndex = 13 Me.BClose.Text = "Close the file" Me.BClose.UseVisualStyleBackColor = True ' 'BNext ' Me.BNext.Location = New System.Drawing.Point(147, 106) Me.BNext.Name = "BNext" Me.BNext.Size = New System.Drawing.Size(130, 31) Me.BNext.TabIndex = 14 Me.BNext.Text = "Read next value" Me.BNext.UseVisualStyleBackColor = True ' 'Form1 ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(516, 321) Me.Controls.Add(Me.BNext) Me.Controls.Add(Me.BClose) Me.Controls.Add(Me.BNew) Me.Controls.Add(Me.BRestart) Me.Controls.Add(Me.BTotal) Me.Controls.Add(Me.BExit) Me.Controls.Add(Me.BClear) Me.Controls.Add(Me.BAverage) Me.Controls.Add(Me.OResults) Me.Controls.Add(Me.bEnter) Me.Controls.Add(Me.Inext) Me.Controls.Add(Me.Label3) Me.Controls.Add(Me.Label2) Me.Controls.Add(Me.Label1) Me.Name = "Form1" Me.Text = "Form1" Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents Label1 As System.Windows.Forms.Label Friend WithEvents Label2 As System.Windows.Forms.Label Friend WithEvents Label3 As System.Windows.Forms.Label Friend WithEvents Inext As System.Windows.Forms.TextBox Friend WithEvents bEnter As System.Windows.Forms.Button Friend WithEvents OResults As System.Windows.Forms.ListBox Friend WithEvents BAverage As System.Windows.Forms.Button Friend WithEvents BClear As System.Windows.Forms.Button Friend WithEvents BExit As System.Windows.Forms.Button Friend WithEvents BTotal As System.Windows.Forms.Button Friend WithEvents BRestart As System.Windows.Forms.Button Friend WithEvents BNew As System.Windows.Forms.Button Friend WithEvents BClose As System.Windows.Forms.Button Friend WithEvents BNext As System.Windows.Forms.Button End Class