First of all, I'm a new member and this is my first post. If I overstep any boundries, please let me know. If this should be in another forum, also please let me know.
I'm having an issue debugging a VB program. Here is a code snippet.
Dim cr As String()
While Not fp.EndOfData
Try
cr = fp.ReadFields
strFlags = getFlags(cr(0))
If Left(strFlags, 1) = "Y" Then
moveToFile(cr)
End If
Catch ex As Exception
End Try
End While
If I put the breakpoint on the IF statement, the code stops, and I can step through the code, but If I put the breakpoint on a statement in the moveToFile procedure, it doesn't stop.
Any ideas???
I'm having an issue debugging a VB program. Here is a code snippet.
Dim cr As String()
While Not fp.EndOfData
Try
cr = fp.ReadFields
strFlags = getFlags(cr(0))
If Left(strFlags, 1) = "Y" Then
moveToFile(cr)
End If
Catch ex As Exception
End Try
End While
If I put the breakpoint on the IF statement, the code stops, and I can step through the code, but If I put the breakpoint on a statement in the moveToFile procedure, it doesn't stop.
Any ideas???