M
Martin Ortiz
for example....VS.Net adds all these "Me" qualifiers.....in Initialization
code (this is just an example, my question is not specific to this)
Me.OleDbConnection1 = New System.Data.OleDb.OleDbConnection()
Me.SqlConnection1 = New System.Data.SqlClient.SqlConnection()
Me.OleDbCommand1 = New System.Data.OleDb.OleDbCommand()
Me.SqlCommand1 = New System.Data.SqlClient.SqlCommand()
Me.SqlConnection2 = New System.Data.SqlClient.SqlConnection()
My question, why the use of the qualifier "Me" all the time? Is this really
necessary? Would the code not work in some contexts without the "Me"
qualifier?
code (this is just an example, my question is not specific to this)
Me.OleDbConnection1 = New System.Data.OleDb.OleDbConnection()
Me.SqlConnection1 = New System.Data.SqlClient.SqlConnection()
Me.OleDbCommand1 = New System.Data.OleDb.OleDbCommand()
Me.SqlCommand1 = New System.Data.SqlClient.SqlCommand()
Me.SqlConnection2 = New System.Data.SqlClient.SqlConnection()
My question, why the use of the qualifier "Me" all the time? Is this really
necessary? Would the code not work in some contexts without the "Me"
qualifier?