CSC 230: The Week beginning Sept. 6 |
Provide a brief definition of the following terms (in the interface programming context):
Private Sub btnAssign_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAssign.Click lblFirst.Text = lblSecond.Text lblSecond.Text = lblFirst.Text End SubWhat is the Text of each Label after the button is clicked once?
Write a program that allows a single user to logon.
Write a program that determines a student's class based on the number of credits they have earned (less than 24 freshman, greater than or equal to 24 but less than 54 sophomore, greater than or equal to 54 but less than 84 junior, greater than or equal to 84 senior).