Computer Science, asked by rashika194, 3 months ago

8. Write a Visual Basic program to accept the name of your friend in a textbox and

display the total number of characters in it in another textbox at the click of a

command button. ​

Answers

Answered by tejask10h352020
1

Answer:

Here You go :)

Explanation:

Public Class Form1

  Private Sub Form1_Load(sender As Object, e As EventArgs) _

      Handles MyBase.Load

     ' Set the caption bar text of the form.  

     Me. Text = "yeet

   

  Private Sub btnMessage_Click(sender As Object, e As EventArgs) _

  Handles btnMessage.Click

     MessageBox.Show("Thank you " + txtName. Text + " from " + txtOrg.Text)

  End Sub

End Class

Similar questions