Questions tagged [step-into]

80 questions
1
vote
1 answer

C# set breakpoint on paint event but cannot step through or past on debug?

I am really not sure if it is an issue with my inexperience with C#, VS 2010, debug, .net, or events in general, so please be bear with me. I have a project drawing an Alphabet Aquarium. Adding letters in different colors to a panel and then animate…
rmichael_h
  • 11
  • 3
1
vote
1 answer

How do you debug a referenced dll from a process you are already attached to

I hope that title wasnt confusing. So I have a Windows Service that I am debugging by "Attaching to Process". This Windows service references a dll that is built in another project and built through TeamCity, then referenced through Nuget. I would…
Sean P
  • 949
  • 4
  • 22
  • 41
1
vote
2 answers

WCF/WF - Why can't I publish updated code and resume / debug a suspended workflow on it

I have a WCF workflow using AppFabric / Persistence and .net 4.0 that I know is going to have a few bugs in the code activities due to the fact that its talking to an external soap service that sometimes throws SoapExceptions as return values when…
CarComp
  • 1,929
  • 1
  • 21
  • 47
1
vote
1 answer

VBA code works in step-through, skips a file when run

The code below works great when I do a "Step into" the code, and pastes the data from each file into the "Cisco Database" file. However, when I just run it, it always leaves off the last file. I added a specific line to save the DB file each time,…
caro
  • 863
  • 3
  • 15
  • 36
1
vote
0 answers

VS debugger won't step into XML deserializer constructor

Background I have a class that serializes to an XML file so users can change some startup settings. The class has an enum and I want the deserializer to accept either the name or int value as valid. protected MyClass(SerializationInfo info,…
1
vote
2 answers

Java - cannot step into a function when function is called within an assert

So I noticed while debugging a Netbeans Java application when a function call is used in an assert function, you cannot hit a breakpoint within that function or step into that function. At first I thought it had to do something to do with using an…
aitee
  • 91
  • 1
  • 1
  • 9
0
votes
4 answers

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 …
AlexKelos
  • 347
  • 2
  • 5
  • 9
0
votes
1 answer

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, I often find myself in the following…
Alex Churchill
  • 4,887
  • 5
  • 30
  • 42
0
votes
0 answers

How does inline assembly skip directly to the end of a recursive function?

HPSTART: CMP EBX, 1 // if n = 1 JNE HPERMUT MOV EDX, N INSERT: MOV ECX, Perm[4320 + EDX * 4] MOV Perm[EDI * 4], ECX INC EDI DEC EDX TEST EDX, EDX JNZ…
0
votes
1 answer

Stop,Step In,Step Over and Step Out in the KOMODO debugger

I would like to understand what does it mean in the KOMODO debugger to Stop,Step In,Step Over and Step Out as in the snippet below:
user2925716
  • 949
  • 1
  • 6
  • 13
0
votes
1 answer

Eclipse IDE debugger : step into isn't working properly

All the functions used in the main file are correctly defined. However when I try to enter the debugging mode, for some reason IDE isn't stepping into said functions when asked to. Instead it acts like a step over and ignores the lines until the…
0
votes
1 answer

What unusual thing takes place when I step into a Control.Visible = true assignment?

I have an UserControl that is made Visible. One of its custom properties is set to true somewhere I do not know. All I know is that after setting its Visible property to another value (true), the custom property is true. It is wrong that its value…
silviubogan
  • 3,343
  • 3
  • 31
  • 57
0
votes
1 answer

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 the cause of this problem?
Pooja
  • 2,162
  • 5
  • 33
  • 64
0
votes
2 answers

Debugging PyCharm?

Could someone guide me on debugging PyCharm in step into, over, out or put in a breakpoints. I am using 2017.1 version. These options are greyed out.
Johnseito
  • 315
  • 1
  • 9
  • 24
0
votes
2 answers

gdb - skip further step in of certain file by predefined rule?

Let's say i have this file: xb@dnxb:/tmp/c$ cat helloworld.h void hello(); xb@dnxb:/tmp/c$ cat helloworld.c #include void hello() { printf("Hello world!\n"); printf("Next line\n"); } xb@dnxb:/tmp/c$ cat main.c #include…
林果皞
  • 7,539
  • 3
  • 55
  • 70