Dim average As Integer
Dim units As Integer
Const math = 4
Const science = 3
Const english = 3
units = math + science + english
average = (Val(txtenglish * english + Val(txtscience) * science + Val(txtmath) * math)) / units
lblanswer.Caption = average
msg = MsgBox("Success Your Average Grade Is I WANT TO SHOW THE RESULT HERE!", vbInformation)
Dim average As Integer
Dim units As Integer
Const math = 4
Const science = 3
Const english = 3
units = math + science + english
average = (Val(txtenglish * english + Val(txtscience) * science + Val(txtmath) * math)) / units
lblanswer.Caption = average
MsgBox("Success Your Average Grade Is: " & average)

