Begin by carefully reading the note on event handlers and the notes on the VS.NET Development System, including the one on the code window which we use in this assignment.
The first program with event handlers has two event handlers, one for the event that the user clicks on the "stop the program" button and one for the event that the user clicks on the "display the message" button. Write an identical program. When it is working, turn in a screen shot of the program while it is executing and listings of your object definitions and event handlers (from the end of the form1.vb file). You do not have to turn in a listing of the entire program.
Hint: Since the program will display multiple lines of output in the text box, be sure to set the value of its Multiline property to true.
Next, modify your program as follows, and answer these questions:
("Hello, my friend! ")
to:
("Hello, my friend!") (No spaces after the exclamation point)
("Hello, my friend! " & vbCrLf)
("Hello, my friend! " & vbCrLf &vbCrLf)