Wyo VB Mad Lib

Write a program that allows the user to enter a noun into one text box, a verb into another text box and an adjective into a third text box. You may include more text boxes with prompts such as "place", "food", "animal", etc. Include a button with the Text property "Click" that displays a funny mad lib in a label using the three or more user inputs. The label should initially be invisible but become visible when the user clicks the Click button. Also include an Exit button that the user can click to end the program as well as a Clear button that allows the user to clear the text box. In order to add line breaks in the output in the label, use the vbCrLf constant as in

lblOutput.Text = "Mary had " + vbCrLf + " a little lamb"

Your program must follow the Visual Basic Coding Standards. Name your project Mad Lib .

Staple your printouts in the following order:

  1. VB code
  2. Interface Sketch
  3. The screen capture of your actual form window at runtime after a successful test case. See the instructor if you do not know how to create a screen capture.