You are on page 1of 2

AGUILA, REYMARK L.

BSCS III-C (DAY)


SOURCE CODE:

Private Sub cmdCompute_Click()

lblSum.Caption = Val(txtCs211.Text) + Val(txtCs111.Text) + Val(txtCs213.Text)

lblAve.Caption = Val(lblSum.Caption) / 3

If Val(lblAve.Caption) >= 75 Then

MsgBox ("Congratulations!!!! " + txtFName.Text + " " + txtMI.Text + " " + txtSName.Text + " of " +
txtCYrSec.Text + " you passed your subjects!!!!!"), vbInformation, "message"

Else

MsgBox ("Sorry!!!! " + txtFName.Text + " " + txtMI.Text + " " + txtSName.Text + " of " + txtCYrSec.Text + "
you failed!!!"), vbInformation, "message"

End If

End Sub

Private Sub cmdExit_Click()

Dim a As String

a = MsgBox("Quit the program?????", vbYesNo, "EXIT")

If a = vbYes Then

Unload Me

Else

frmSimplegradingsystem.Show

End If

End Sub

You might also like