<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
	"docbook-xml-4.4/docbookx.dtd">
<!--http://www.docbook.org/xml/4.4/docbookx.dtd-->
<article id="jspservletlifecycle">
	
	<articleinfo>
		<title>Exercise 1</title> <author>
		<firstname>Kevin</firstname>
		<surname>Nilson</surname>
		
		<affiliation>
			<orgname>http://www.smccd.net/accounts/nilsonk/smc2006springcis125/s06cis125welcome.html</orgname>
		</affiliation> </author>
		
		<abstract>
			<simpara>CS 125 Exercise 1, Visual Basic .NET I , Spring 2006</simpara>
		</abstract>
		
	</articleinfo>
	
	<sect1 id="assignment">
		<title>Assignment </title>
		<simpara>Due - January 24, 2006 - resubmissions by January 26, 2006</simpara>
		<simpara>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</simpara>
		<simpara>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()</simpara>
		<simpara>Environment.NewLine() should be used at least once to provide line breaks</simpara>
		
		<programlisting>
        Me.TextBoxAboutMe.Text = "My name is Kevin Nilson" + Environment.NewLine() + Environment.NewLine() + "I am the professor of this class."
		</programlisting>
		<simpara>Make sure ReadOnly is set to True on all TextBoxes</simpara>
		<simpara>All Components should have meaningful names.  TextBox1 is not a meaningful name.  TextBoxStudentName is a meaningful name</simpara>
		
	</sect1>
	
</article>
