Question: What will be displayed in the label when the user clicks the button? Dim output As String = Private Sub btnSubmit_Click(ByVAl Sender As
What will be displayed in the label when the user clicks the button?
Dim output As String = " "
Private Sub btnSubmit_Click(ByVAl Sender As System.Object, ByVal e As System.EventArgs) Handles btnSubmit.Click
output = " Robert "
myProc()
output = "8"
lblResult.Text = output
End Sub
Sub myProc()
output = output & "8"
End sub
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
