_ 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.txtPrice = New System.Windows.Forms.TextBox Me.Label3 = New System.Windows.Forms.Label Me.lblTip = New System.Windows.Forms.Label Me.Bcalc = New System.Windows.Forms.Button Me.Bexit = New System.Windows.Forms.Button Me.Label4 = New System.Windows.Forms.Label Me.SuspendLayout() ' 'Label1 ' Me.Label1.AutoSize = True Me.Label1.Location = New System.Drawing.Point(128, 26) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(64, 13) Me.Label1.TabIndex = 0 Me.Label1.Text = "Tip Program" ' 'Label2 ' Me.Label2.AutoSize = True Me.Label2.Location = New System.Drawing.Point(60, 112) Me.Label2.Name = "Label2" Me.Label2.Size = New System.Drawing.Size(86, 13) Me.Label2.TabIndex = 1 Me.Label2.Text = "Price of meal $" ' 'txtPrice ' Me.txtPrice.Location = New System.Drawing.Point(152, 109) Me.txtPrice.Name = "txtPrice" Me.txtPrice.Size = New System.Drawing.Size(105, 20) Me.txtPrice.TabIndex = 2 ' 'Label3 ' Me.Label3.AutoSize = True Me.Label3.Location = New System.Drawing.Point(60, 190) Me.Label3.Name = "Label3" Me.Label3.Size = New System.Drawing.Size(34, 13) Me.Label3.TabIndex = 3 Me.Label3.Text = "Tip $" ' 'lblTip ' Me.lblTip.AutoSize = True Me.lblTip.Location = New System.Drawing.Point(100, 190) Me.lblTip.Name = "lblTip" Me.lblTip.Size = New System.Drawing.Size(10, 13) Me.lblTip.TabIndex = 4 Me.lblTip.Text = "." ' 'Bcalc ' Me.Bcalc.Location = New System.Drawing.Point(66, 290) Me.Bcalc.Name = "Bcalc" Me.Bcalc.Size = New System.Drawing.Size(97, 31) Me.Bcalc.TabIndex = 5 Me.Bcalc.Text = "Calculate" Me.Bcalc.UseVisualStyleBackColor = True ' 'Bexit ' Me.Bexit.Location = New System.Drawing.Point(231, 290) Me.Bexit.Name = "Bexit" Me.Bexit.Size = New System.Drawing.Size(105, 31) Me.Bexit.TabIndex = 6 Me.Bexit.Text = "Exit" Me.Bexit.UseVisualStyleBackColor = True ' 'Label4 ' Me.Label4.AutoSize = True Me.Label4.Location = New System.Drawing.Point(38, 336) Me.Label4.Name = "Label4" Me.Label4.Size = New System.Drawing.Size(78, 13) Me.Label4.TabIndex = 7 Me.Label4.Text = "Mark Bernstein" ' 'Form1 ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(425, 363) Me.Controls.Add(Me.Label4) Me.Controls.Add(Me.Bexit) Me.Controls.Add(Me.Bcalc) Me.Controls.Add(Me.lblTip) Me.Controls.Add(Me.Label3) Me.Controls.Add(Me.txtPrice) 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 txtPrice As System.Windows.Forms.TextBox Friend WithEvents Label3 As System.Windows.Forms.Label Friend WithEvents lblTip As System.Windows.Forms.Label Friend WithEvents Bcalc As System.Windows.Forms.Button Friend WithEvents Bexit As System.Windows.Forms.Button Friend WithEvents Label4 As System.Windows.Forms.Label End Class