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
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
Computer Science,
1 month ago
Biology,
1 month ago
English,
1 month ago
Math,
3 months ago
Art,
9 months ago