Share via

Need Help with Next Debugging Step

RogerSchlueter-7899 1,731 Reputation points
2026-06-20T03:24:06+00:00

The issues arises with a VB/wpf application. The picture below shows where my application is halted at a breakpoint and the arrow shows the next step:

Breakpoint

That next stop is just the End Sub. But when I execute that step the application halts and disappears completely although Visual Studio remains undisturbed. There is no error message, there is nothing in the debug window, there is nothing more in the Call Stack and no exception is thrown. I can find no additional info in the other debug windows.

So, what can I do to chase down the problem?

Developer technologies | Visual Studio | Debugging

1 answer

Sort by: Most helpful
  1. Senthil kumar 770 Reputation points
    2026-06-20T05:29:40.76+00:00

    Hi @RogerSchlueter-7899

    I understand your issue. you want know what will be return in cvsSites.

    Just check cvsSites having sub properties like count(cvsSites.Count) or hasError like that. below give some example.

    If cvsSites.Count > 0 Then
    
    End If
    

    if you set like that breakpoint come to the IF section you will find it. what returned in cvsSites.

    Thanks.

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.