Questions tagged [step-into]
80 questions
0
votes
0 answers
Visual studio c# code produce difference result without using debugger
When I try to debug my code with debugger with F11 (Step Into), my code produced the expected result. When I try to run the code without debugger(without break point), the looping in my code produced unexpected result; to be specific, the looping…

Soon Ee
- 73
- 12
0
votes
0 answers
Firefox Javascript debugger doesn't work - buttons grayed out
I'm trying to debug a JavaScript in Firefox's debugger, and it won't let me set any breakpoints, and all the step buttons (step into, step out) are grayed out. I also tried Firebug, and I have the exact same results - no breakpoints, step buttons…

stupidmoron
- 1
- 3
0
votes
2 answers
java eclipse can't step through thread after breakpoint with multithreaded program
I have a program that has 4 worker threads operating on a method. If I place a breakpoint in the method each worker thread will pause on it but the step into and step over buttons (as well as play/pause/terminate) are disabled so I can't walk…

daedalus
- 105
- 2
- 10
0
votes
1 answer
Active function keys for visual studio
In visual studio 2013,the Step Into function key(F11) doesn't work and it just works for laptop.
For example when i am in visual studio and debug program and press F11 it works for brightness of system and doesn't work for Step Into.
How can i…

Navid
- 37
- 1
- 2
- 9
0
votes
1 answer
How to monitor type within oracle package
I'm working on a perviously developed website that uses oracle as the back end. I'm getting a ORA-06502: PL/SQL: numeric or value error and I'm trying to pinpoint the exact issue. The problem I have is some of the procedures are using for loops…

Jerry Warra
- 304
- 1
- 4
- 20
0
votes
1 answer
Eclipse CDT cannot debug to step into function definition in same directory
I am new to eclipse cdt. I did a little research but did not find an answer. I wonder, say I have a project/simpleClient/simpleClient.cc that calls functions under project/src/somefile.cc. When I put a debugger in simpleClient.cc, and call function…

user2751691
- 401
- 2
- 10
- 32
0
votes
2 answers
Private function different results in step through and run modes
My code runs without errors in both step through mode and run mode. However, it is only in step through mode that I get the correct results of the calculations in the code. It is not clear where the wrong results come from in run mode.
Private…

squar_o
- 557
- 2
- 11
- 36
0
votes
2 answers
Module sub wont't step through alone
I have a module in my program that will run when called from the main program but I can not step through it or run it alone and I can't figure out why. When I press F8 nothing at all seems to happen. I want to be able to monitor the variables as I…

dhnobles
- 21
- 8
0
votes
1 answer
Step into when opening another workbook
I'm trying to debug code using "Step into", but first part of my code requires another workbook to be opened by TextBox. So "Step Into" just stops when TextBox appears (I mean that there is no opportunity to choose file via button or fill by…

Seya
- 91
- 1
- 3
- 11
0
votes
0 answers
How to step through a program using Netbeans?
For part of my testing, I need to be able to step through the program, and take screenshots as different functions are executing. However, I can't seem to get the program to run through the functions I want them to.
I've tried stepping into the…

kbz
- 984
- 2
- 12
- 30
0
votes
0 answers
Seeing the code being executed for an MPI program
I want to step through and SEE the code that is being executed in an MPI program. For example if MPI_Init() is being executed then I should be able to SEE what code is actually being executed - like going into the mpi.h file and seeing statements…

Gaurav Saxena
- 729
- 1
- 6
- 13
0
votes
1 answer
Visual C++ 2010 cannot Step Into MFC source
I've been trying several solutions available on the Internet for this, but none of them worked.
I can not step into any method of the MFC Source code.
In my Output Window I see:
'MyApp.exe': Loaded 'd:\src\output\Win32\Debug_Unicode\MyApp.exe',…

sergiol
- 4,122
- 4
- 47
- 81
0
votes
1 answer
Step Into Does not work in Eclipse CDT
I am using eclipse CDT in Ubuntu OS and have created a C project with external static library(libtomcrypt) linked to it. It runs and gives the output correctly, but I want to know definition of the library functions, the call hierarchy of the…

annunarcist
- 1,637
- 3
- 20
- 42
0
votes
1 answer
C# Step Into variable list
There usually is a variable list at the bottom of the screen that helps me follow the value of different variables in my app while using the f11 'step into' function, but since I updated to web developer 2012 I can't seem to find this list. Was it…

Htusa Adssad
- 105
- 1
- 2
- 8
0
votes
2 answers
How to step into function of a dll when you have the .pdb file and the C++ source code with VS2010?
I am trying to debug a dynamic library I have wrote used by an application inside Visual Studio 2010. I can step into until a function of my dll, but I can't step into deeper and see the source code. If I open the Disassembly window, then I can step…

Dragnalith
- 195
- 1
- 9