VBSlip 20_1_2015-16



=================================Slip20_1===================================
Write a VB program which accepts First name and last name from user into two textboxes and three command buttons Concatenate, Uppercase, Lowercase respectively. After clicking on command button appropriate result should get display into third textbox
==========================================================================
 


Private Sub Command1_Click()

                Text3.Text = Text1.Text + Text2.Text
               
End Sub
Private Sub Command2_Click()
                Text3.Text = UCase(Text3.Text)
End Sub

Private Sub Command3_Click()
                Text3.Text = LCase(Text3.Text)
               
End Sub
               
 

No comments:

Post a Comment

Note: only a member of this blog may post a comment.