CIS56 - Visual Basic - Assignment #2

Create a form with objects (like text boxes, command buttons etc) and events (use the click event). The Visual Basic project that you turn in should include 20 unique "things". Using a property like Caption or Text counts as one thing. Each unique command you use in the code counts as one thing. For example if you add two things together that counts as one, if you format to currency that counts as one etc. If you do the same or a similar thing, it does not count.
You need to document your code to show me where the things are.

For example:
REM #1 Here I am using a text box and putting a name into it.
txtName.Text = "John"

Note: A remark or documentation can be done with REM or a single quote.
Use your book and the notes for examples!