Hello not sure if this is the correct place to put this. if it is the wrong place sorry about it mods
I am just learning Visual Basic.NET 2003 form Sams Teach Yourself in 21 days i am using Microsoft Visual Studio 2005 IDE
the point of this thread is in the book it says when i double click on a button on the form i should have following lines of code
Public Class Form 1
Inherits System.Windows.Forms.Form
'Windows Form Designer generated code
Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
TextBox1.Text = "Hello there!"
End Sub
End Class
but when i double click and go into code view all i have is the following
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
TextBox1.Text = "Hello there!"
End Sub
End Class
If any one could shed some light on why this is happening would be great the programs still run. just want to check and see if i am doing any thing wrong
I am just learning Visual Basic.NET 2003 form Sams Teach Yourself in 21 days i am using Microsoft Visual Studio 2005 IDE
the point of this thread is in the book it says when i double click on a button on the form i should have following lines of code
Public Class Form 1
Inherits System.Windows.Forms.Form
'Windows Form Designer generated code
Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
TextBox1.Text = "Hello there!"
End Sub
End Class
but when i double click and go into code view all i have is the following
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
TextBox1.Text = "Hello there!"
End Sub
End Class
If any one could shed some light on why this is happening would be great the programs still run. just want to check and see if i am doing any thing wrong