Question: In this exercise, you modify the Proper Case application from Exercise 6. If necessary, complete Exercise 6. Then, use Windows to make a copy of

In this exercise, you modify the Proper Case application from Exercise 6. If necessary, complete Exercise 6. Then, use Windows to make a copy of the Proper Case Solution folder. Rename the copy Proper Case Solution-Middle. Open the Proper Case Solution.sln file contained in the Proper Case Solution-Middle folder. Modify the application to allow the user to also enter his or her middle name or middle initial. The btnProper_Click procedure should display the full name, which might include a middle name or middle initial, in proper case. Save the solution and then start and test the application. (If the user enters john smith as the name, the application should display John Smith. If the user enters john thomas smith, the application should display John Thomas Smith. If the user enters carol g. jones, the application should display Carol G. Jones. If the user enters two spaces, pam, two spaces, grace, three spaces, darwin, and two spaces, the application should display Pam Grace Darwin.)
This is Visual Basic : Chapter 7 Exercise 12
' Name: Proper Case Project ' Purpose: Displays the name using proper case. ' Programmer:
Option Explicit On Option Strict On Option Infer Off
Public Class frmMain Private Sub btnExit_Click(sender As Object, e As EventArgs) Handles btnExit.Click Me.Close() End Sub
Private Sub txtName_Enter(sender As Object, e As EventArgs) Handles txtName.Enter txtName.SelectAll() End Sub
Private Sub txtName_TextChanged(sender As Object, e As EventArgs) Handles txtName.TextChanged lblName.Text = String.Empty End Sub
Private Sub frmMain_Load(sender As Object, e As EventArgs) Handles MyBase.Load
End Sub End Class
Proper Case | -| cName (first and last): an n proper case Proper Exit
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
