_ 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.Button1 = New System.Windows.Forms.Button Me.txtfirst = New System.Windows.Forms.TextBox Me.output = New System.Windows.Forms.ListBox Me.Label1 = New System.Windows.Forms.Label Me.Label2 = New System.Windows.Forms.Label Me.txtsecond = New System.Windows.Forms.TextBox Me.Button2 = New System.Windows.Forms.Button Me.Button3 = New System.Windows.Forms.Button Me.Button4 = New System.Windows.Forms.Button Me.Button5 = New System.Windows.Forms.Button Me.Button6 = New System.Windows.Forms.Button Me.SuspendLayout() ' 'Button1 ' Me.Button1.Location = New System.Drawing.Point(12, 123) Me.Button1.Name = "Button1" Me.Button1.Size = New System.Drawing.Size(77, 23) Me.Button1.TabIndex = 0 Me.Button1.Text = "divide" Me.Button1.UseVisualStyleBackColor = True ' 'txtfirst ' Me.txtfirst.Location = New System.Drawing.Point(113, 12) Me.txtfirst.Name = "txtfirst" Me.txtfirst.Size = New System.Drawing.Size(100, 20) Me.txtfirst.TabIndex = 1 ' 'output ' Me.output.FormattingEnabled = True Me.output.HorizontalScrollbar = True Me.output.Location = New System.Drawing.Point(95, 123) Me.output.Name = "output" Me.output.Size = New System.Drawing.Size(185, 108) Me.output.TabIndex = 2 ' 'Label1 ' Me.Label1.AutoSize = True Me.Label1.Location = New System.Drawing.Point(46, 12) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(61, 13) Me.Label1.TabIndex = 3 Me.Label1.Text = "first number" ' 'Label2 ' Me.Label2.AutoSize = True Me.Label2.Location = New System.Drawing.Point(27, 38) Me.Label2.Name = "Label2" Me.Label2.Size = New System.Drawing.Size(80, 13) Me.Label2.TabIndex = 5 Me.Label2.Text = "second number" ' 'txtsecond ' Me.txtsecond.Location = New System.Drawing.Point(113, 38) Me.txtsecond.Name = "txtsecond" Me.txtsecond.Size = New System.Drawing.Size(100, 20) Me.txtsecond.TabIndex = 4 ' 'Button2 ' Me.Button2.Location = New System.Drawing.Point(14, 152) Me.Button2.Name = "Button2" Me.Button2.Size = New System.Drawing.Size(75, 23) Me.Button2.TabIndex = 6 Me.Button2.Text = "multiply" Me.Button2.UseVisualStyleBackColor = True ' 'Button3 ' Me.Button3.Location = New System.Drawing.Point(14, 181) Me.Button3.Name = "Button3" Me.Button3.Size = New System.Drawing.Size(75, 23) Me.Button3.TabIndex = 7 Me.Button3.Text = "add" Me.Button3.UseVisualStyleBackColor = True ' 'Button4 ' Me.Button4.Location = New System.Drawing.Point(12, 210) Me.Button4.Name = "Button4" Me.Button4.Size = New System.Drawing.Size(75, 23) Me.Button4.TabIndex = 8 Me.Button4.Text = "subtract" Me.Button4.UseVisualStyleBackColor = True ' 'Button5 ' Me.Button5.Location = New System.Drawing.Point(113, 237) Me.Button5.Name = "Button5" Me.Button5.Size = New System.Drawing.Size(83, 22) Me.Button5.TabIndex = 9 Me.Button5.Text = "clear" Me.Button5.UseVisualStyleBackColor = True ' 'Button6 ' Me.Button6.Location = New System.Drawing.Point(205, 237) Me.Button6.Name = "Button6" Me.Button6.Size = New System.Drawing.Size(75, 23) Me.Button6.TabIndex = 10 Me.Button6.Text = "exit" Me.Button6.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(292, 266) Me.Controls.Add(Me.Button6) Me.Controls.Add(Me.Button5) Me.Controls.Add(Me.Button4) Me.Controls.Add(Me.Button3) Me.Controls.Add(Me.Button2) Me.Controls.Add(Me.Label2) Me.Controls.Add(Me.txtsecond) Me.Controls.Add(Me.Label1) Me.Controls.Add(Me.output) Me.Controls.Add(Me.txtfirst) Me.Controls.Add(Me.Button1) Me.Name = "Form1" Me.Text = "Form1" Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents Button1 As System.Windows.Forms.Button Friend WithEvents txtfirst As System.Windows.Forms.TextBox Friend WithEvents output As System.Windows.Forms.ListBox Friend WithEvents Label1 As System.Windows.Forms.Label Friend WithEvents Label2 As System.Windows.Forms.Label Friend WithEvents txtsecond As System.Windows.Forms.TextBox Friend WithEvents Button2 As System.Windows.Forms.Button Friend WithEvents Button3 As System.Windows.Forms.Button Friend WithEvents Button4 As System.Windows.Forms.Button Friend WithEvents Button5 As System.Windows.Forms.Button Friend WithEvents Button6 As System.Windows.Forms.Button End Class