2.2 - Basic String Manipulation

1... Create the following Form in Visual Basic

2... The user will type in a very short sentence, and will then click on a specific button. The final label will display the user's entry either in Upper Case letters, Lower Case letters, or in Proper Case.

3... The basic commands you might need are as follows:

lblFinal.Text = LCase (strUserWord1)
lblFinal.Text = UCase (strUserWord1)

lblFinal.Text = StrConv (strUserWord1, VbStrConv.ProperCase)

4... When you have completed the above program, call your teacher over.

5... Now that you are familiar with alternate buttons, review the use of radio buttons and complete the above program using radio buttons. The form should resemble the following: