Due - January 24, 2006 - resubmissions by January 26, 2006
Write a simple Visual Basic .NET Program to give the instructor information about yourself. Use several labels and TextBoxes to type text. Tell me your major, why you are taking the class, your email address, your previous programming experience, your previous computer experience, and other information
3 buttons should appear on the Form. One button to clear the form. One button to fill in the data. One button to exit: Me.Close()
Environment.NewLine() should be used at least once to provide line breaks
Me.TextBoxAboutMe.Text = "My name is Kevin Nilson" + Environment.NewLine() + Environment.NewLine() + "I am the professor of this class."
Make sure ReadOnly is set to True on all TextBoxes
All Components should have meaningful names. TextBox1 is not a meaningful name. TextBoxStudentName is a meaningful name