G
Guest
When stepping thru the code of this app, it will jump completely over the line that delcares the data reader object.. Does anyone know why
Dim myConnString As String = "Provider=Microsoft.Jet.OLEDB.4.0;User ID=Admin;Data Source=c:\todo.mdb
Dim myCommand As New OleDbCommand(
Dim myreader As OleDbDataReade
Dim myConn As New OleDbConnection(myConnString
Tr
myCommand.Connection = myCon
myConn.Open(
myCommand.CommandText = "Select * From names
myreader = myCommand.ExecuteReader(
While myreader.Read(
End Whil
myConn.Close(
Catch eException As Exceptio
MsgBox(eException.ToString
End Tr
Pressing F8 will step me thru every line but will jump right over the "Dim mreader as OleDbDataReader"
Dim myConnString As String = "Provider=Microsoft.Jet.OLEDB.4.0;User ID=Admin;Data Source=c:\todo.mdb
Dim myCommand As New OleDbCommand(
Dim myreader As OleDbDataReade
Dim myConn As New OleDbConnection(myConnString
Tr
myCommand.Connection = myCon
myConn.Open(
myCommand.CommandText = "Select * From names
myreader = myCommand.ExecuteReader(
While myreader.Read(
End Whil
myConn.Close(
Catch eException As Exceptio
MsgBox(eException.ToString
End Tr
Pressing F8 will step me thru every line but will jump right over the "Dim mreader as OleDbDataReader"