Form 1

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Public Class Form1

Dim Length1 As Single


Dim Length2 As Single
Dim Length3 As Single
Dim Length4 As Single
Dim Average As Single
Private Sub QuitToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles QuitToolStripMenuItem.Click
Application.Exit()
End Sub

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)


Handles Button1.Click
Length1 = TextBox1.Text
Length2 = TextBox2.Text
Length3 = TextBox3.Text
Length4 = TextBox4.Text
Average = (Length1 + Length2 + Length3 + Length4) / 4
Average = Label6.Text

End Sub
End Class

You might also like