Paul Moss
Paul Moss

Reputation:

How to step into VB.NET class code

I am debugging a VB.NET forms program which calls into properties and methods of a class which is part of the same project.

I put a break point in the form code but when I step through, it does not step into the class code.

Am I missing a setting?

Upvotes: 0

Views: 3831

Answers (2)

Raúl Roa
Raúl Roa

Reputation: 12386

Pressing F11 will take you into the method definition. F10 will step over. F5 will jump to the next break point. Or simply continue with the execution of your application until the application meets another break point on it's execution path.

This can can also be achieved by using actions located on the toolbar and in the context menu when using right click.

Upvotes: 3

Dan Walker
Dan Walker

Reputation: 7163

Make sure that you are pressing Step Into, not Step Over.

Upvotes: 0

Related Questions