Public Class Form1
Private Sub Button1_Click(ByVal sender As _
System.Object, ByVal e As System.EventArgs)
-
Handles Button1.Click
Button1.Text = "Hello World"
End Sub
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
End Sub
End Class
The name of the button isn't changing to Hello World... Anyone can correct this?