Questions tagged [step-through]
15 questions
3
votes
3 answers
Can I use pdb files to step through a 3rd party assembly?
my friend has made a really helpful class library which I use all the time. I usually use Reflector to see what his code does.
What I really wanted to do was to step through his code while I'm debugging. So he gave me his .pdb file.
Foo.dll…

Pure.Krome
- 84,693
- 113
- 396
- 647
2
votes
1 answer
How to run PHP code in step-through mode with auto step after time for presentation purposes
For presentation purposes automatic step-into with time interval would be more comfortable in certain use-cases. It also could be nice tool for brief overview new applications. Do you know how to setup such function?

pjedwabny
- 75
- 1
- 8
1
vote
0 answers
VBA : Copy and Paste Range as Picture Works when stepping through but get "run-time Error '1004'" when run
I am having an issue with the code below. I have written a macro to copy and paste pictures of a series of rows, and it works when I step through it. However, when I run the macro, it tends to get stuck on one random paste (usually not a singular…

DDDDHHHH
- 11
- 1
1
vote
0 answers
Excel VBA code runs by itself when stepping through
Sorry if this is a duplicate, however I doubt that, as I've been Googling for an hour and no search hits even come close to what i'm looking for.
My macro is run from Excel, it opens a PowerPoint presentation from a Sharepoint and handles Excels…

metrazol
- 119
- 1
- 2
- 11
1
vote
2 answers
Step Through Visual Studio On Click
I am trying to work on this website and I am a bit new to Visual Studio and whatnot. I would like to have a step through action whenever I click on certain icons on the website. Basically it is a lot of code, most of which I am learning, and I need…

James
- 572
- 3
- 9
- 17
1
vote
1 answer
Stepping through code in Xcode
I have code that contains a nested for loop, and I need to see the execution line by line so I can understand how the loop works.
When running the program, I need to press "enter" to execute the next line. I remember about a month ago I accidentally…

user2066392
- 341
- 1
- 2
- 11
0
votes
1 answer
How to step through Swing app in Intellij
I am new to Intellij and am running a GUI app and wanted to know if there was a better way to trace execution than to run through debug mode and click through each line of code. I only want to see each function call and have it jump between…

displayName
- 195
- 2
- 15
0
votes
1 answer
Code Changes While Debugging Not Taking Effect (Visual Studio 2017)
I'm stepping through my C# program in Visual Studio, trying to test how a generated HTML string will look given a few modifications. After I pause the debugger, modify my code, then continue, the changes do not take effect. I step through the entire…

Alex Leslie
- 11
- 3
0
votes
0 answers
VBA code only works when I run it step by step (F8)
I'm trying to create a macro to take a variable set of data, create a pivot table in a different sheet, then create a graph from that pivot table. It works fine when stepping through. However, when I try to click the run button or use a macro…
0
votes
1 answer
Keil uVision debugging step through code outside project
I loaded some code into RAM dynamically and I'm trying to debug it. When stepping through code in uVision it always skips over all the code that is not in the current project and stops at the first instruction that did come from the current project.…

Jesbus
- 790
- 8
- 24
0
votes
1 answer
IntelliJ debug not function normally
I have code that I am trying to debug with IntelliJ (2016.2.5). The debugger used to run just fine, but recently the console started displaying:
Connected to the target VM, address: '127.0.0.1:53186', transport: 'socket'
(the port number seems…

Barend Koorzen
- 13
- 5
0
votes
1 answer
Is there a way to start and stop Php code at a specific point using eclipse?
I am developing a script that takes between 2-5 minutes to run. I am developing functionality about 4 minutes into the script, so while I develop I have to run the application again and again to get to the part I'm developing which can be quite time…

superdee72
- 61
- 8
0
votes
5 answers
How to step through sibling elements
I am trying to step through 6 Div's and give each a unique ID. I thought for sure that the below code would work but all it does is give the first Div "slide1" and the rest all get "slide6". What is the proper way to do this step through?
…

Sev
- 883
- 1
- 14
- 34
0
votes
2 answers
In R, check multiple values multiple times, sum if conditions are met, keep track of position, export data, and repeat
Here is a sampling of my data, which is in a matrix:
BLOCK RUNTIME
101 50
101 20
101 -25
101 -40
101 35
101 45
202 25
202 -10
202 -35
202 40
202 50
202 30
202 -20
202 15
.
.
.
n
The desired output of my…

Andrew Brick
- 115
- 8
0
votes
1 answer
Release build still allows to step-through code, why?
I have published a package to NuGet but while testing it, I found out that I can still step-through the C++ classes even though it is the 'Release' build.
Can you explain why is this and how it can be fixed ?

aybe
- 15,516
- 9
- 57
- 105