Tagged Questions
The step-into tag has no wiki summary.
13
votes
7answers
22k views
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:
...
8
votes
5answers
9k views
Enable and disable “Step into” debugging on certain project in a 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 ...
4
votes
3answers
2k views
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 ...
4
votes
1answer
3k views
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 ...
4
votes
7answers
1k views
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
2
votes
1answer
94 views
Visual Studio: step into assembly
I have a project that references an assembly that I have the code to. I also have all of the PDB files, etc. However, at some point I clicked the wrong button on a dialog box while debugging, and ...
2
votes
1answer
547 views
Exclude certain projects from stepping through during debug in VS2010?
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 ...
2
votes
3answers
475 views
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?
1
vote
1answer
100 views
Step into method proxied by Castle
I use Castle Windsor in my project. When I try to “step into” a method on a proxied class, Visual Studio steps into some Castle methods (with the “No Source Available” window). I realize this is what ...
1
vote
2answers
796 views
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 ...
1
vote
2answers
1k views
Visual Studio debugger step into compiled source
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 ...
0
votes
1answer
146 views
Stepping through a program using Eclipse IDE
How do I step through the program one line at time.
Also, how do I view the console input?
I recently installed Eclipse IDE here:
http://www.eclipse.org/downloads/
Eclipse IDE for C/C++ Developers ...
0
votes
0answers
48 views
Can't step into signed assembly with no password set
In VS2010, when I tell a project to be signed with a key file, but DON'T check the "Protect my key file with a password" box (so a .snk file is generated), I can't step into any code in that assembly ...
0
votes
1answer
39 views
MSVS or Xcode: Step directly into function
Apologies if this is a repeat; I'm having a hard time figuring out what to search for, so have found nothing in regards to this on either Google or SO.
When I'm debugging C++ in either MSVS or Xcode, ...
0
votes
0answers
58 views
unable to step over for static library in xcode
I am not able to step over/debug static library in
There are 2 projects in my application say Application.xcodeproj and StaticLibrary.xcodeproj having source code of application and staticLibrary ...
0
votes
1answer
115 views
Xcode debugger problem
I'm trying to debug my code with the help of the debugger in Xcode, but when I'm trying to step in, nothing is happening. I tried it with another project and it's debugging fine there.
What could be ...
0
votes
1answer
99 views
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 ...
0
votes
2answers
1k views
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 ...
0
votes
4answers
2k views
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 ...