Codes in I.T

You might also like

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

Private Sub Command1_Click()

Text5.Text = Val(Text1.Text) * 0.1


Text6.Text = Val(Text2.Text) * 0.25
Text7.Text = Val(Text3.Text) * 0.3
Text8.Text = Val(Text4.Text) * 0.35
Text9.Text = (Val(Text5.Text) + Val(Text6.Text) + Val(Text7.Text) + Val(Text8.Text)) / 4
End Sub

Private Sub Command3_Click()


Unload Me
End Sub

You might also like