Hello everyone!
Another question pertaining my homework question
I have a user control called Course which contains a maskedtextbox for users to enter in grades and a listbox to show the letter grade for the numeric grade they enter. I have 6 of these in another user control, while the radio buttons enable/disable depending on which button is pressed. I'm having trouble getting the numeric value in the maskedtextbox.
If Convert.ToInt64(Courses1.NumericGrade.Text) >= 80 Then
Courses1.LetterGrade.SelectedIndex = 2
End If
I tried to do the above to get the input as an integer but I'm having no luck.