step-into

Enable/Disable "Step into" debugging on certain project in visual studio solution

I have a Visual Studio solution with four c# projects in it. I want to step into the code of a supporting project in the solution from my main project, but when I use the "Step into" key, it just skips over the call into that other project. I've set breakpoints in the supporting project, and they're ignored, and I can't for the life of m...

Getting rid of "There is no source code available for the current location"

Ok, this is my own fault, but I can't seem to rescue myself. Whenever I try to step into a class that has fields with assignments calling into .NET code, I get a dialog box that contains this text: --------------------------- Microsoft Visual Studio --------------------------- There is no source code available for the current location...

Stepping into an htc file while debugging an ASP.NET page?

I can step into javascript files, but not .htc files. It allows me to set a breakpoint, but it doesn't stop at it. Is it possible? ...

Why is F10 so slow in VS2008 ?

Question says it all really - a lot slower than VS2005, with a noticeable (0.5 sec) delay on each key press. It makes stepping through code a pain. Matt ...

How to step into C/C++ DLL from C# application while debugging

I have two project in my solution: C/C++ Win32 DLL and some C# application. What I have to do to be able to step into DLL while debugging? I switched on all debugging options in C++ project's settings and copied to C# application root next files: MyLib.dll, MyLib.pdb, vc90.pdb, vc90.idb, but it doesn't helped. What additional actions ...

Visual Studio 2008 - how to step into (F11) reflected code

What needs to be done to be able to step-into (F11) the reflected code. I am creating the object using reflection: myObject.GetType().GetConstructor().Invoke(myParams) and I want to go into the constructor's code. If I press F11 it just skips the constructor's code ;( but at the same time if I put a breakpoint at ctor and hit F5 - ...

Visual Studio debugger step into compiled source

Hello I want to be able to step into the source code that is behind a 3rd party (not .Net framework) dll referenced in my own user code. I've done this before but can't now. When I try to step in, VS says there is no source available and would I like to go to disassembly. How do I get VS to ask me to link to the source code to step in...

Stepping over method without symbols - How to step into?

Using Visual Studio 2008 SP1 and a VB.NET project; I have some code which i cannot step into. The Immediate Window shows the message "Stepping over method without symbols 'Some.Namespace.Here'" How can i make sure the method always has symbols?! I need to step into every line of code. I am pressing F8 (which is "Step Into" in VS2008, f...

Stepping into a P/Invoke call in disassemby view

My C# code is calling an unmanaged third-party library function via P/Invoke, and the unmanaged function is having some strange side effects. I want to debug into it and see what it's doing. If I debug my C# code, and try to "Step Into" the P/Invoke call, it steps over instead. No surprise there -- I expected that; it doesn't have the s...

Eclipse step into debugging

I just put eclipse on my laptop, and when i use the Step Into debugging tool, it doesn't just take me to the next part of my code. An example is if i call .size(); on an array list, it will take me into the array list class and through all the code required for .size(); However on my desktop it will simply take me to my next piece of c...

How do I step through/debug a python web application?

I can't seem to find any information on debugging a python web application, specifically stepping through the execution of a web request. is this just not possible? if no, why not? ...

Exclude certain projects from stepping through during debug in VS2010?

Hi, I am working on a couple of projects (A and B) in a large VS2010 solution (all in C#). There are many cases where methods from project A call through to one or more of the projects in the solution for which I am not responsible, which in turn call through to project B. When stepping through with the debugger from project A, I am f...

Select which method to "Step Into" in debugger

Netbeans has a nice "Step Into" feature where if there are multiple method calls on the same line, you can use the arrow keys to choose which one you meant. You can see a screenshot and description on this new and noteworthy page. I am wondering, does Eclipse have the same feature? I see that Eclipse does have Step Filtering, but that's...