Questions tagged [step-into]

80 questions
0
votes
1 answer

FlashDevelop breakpoints for Haxe CPP, allowing "Step-Into" functionality?

Is there a way to set a break-point in FlashDevelop when targeting a Haxe/NME program for windows? It is very hard to follow the logic of a bug if I cannot step into the code.
user1845416
0
votes
1 answer

Stepping into NSMakeRange every time I push the step over button where the debugging line has a call to NSMakeRange

When I am debugging my app it steps into NSMakeRange every time I push the step over button where the debugging line has a call to NSMakeRange. Why do I get this error?
Laureano Bonilla
  • 335
  • 3
  • 18
0
votes
1 answer

confusion with evaluation of the condition and the steps of a for loop

void draw_diamond(int n) { int mid_pos = ceil((double)n / 2); int left_spaces = mid_pos-1; int line_stars = 1; putchar(10); //printing from top through the middle of the diamond for(line_stars, left_spaces ; line_stars <= n; line_stars+=2,…
MTVS
  • 2,046
  • 5
  • 26
  • 37
-2
votes
1 answer

How to Implement Build Solution similar to that of in Visual Studio?

What generally happens when we click on Build Solution in IDE(Visual studio) behind the scenes, how does it fetch all the packages,need a mechanism and appropriate datastructures to do it, Can anyone explain the Design and structures? Also How can…
Deepak
  • 514
  • 1
  • 6
  • 12
-2
votes
1 answer

VBA Step Into Skipping For Loop

I'm getting started on this "wizard" file to automate some Excel (2016) tasks, and I have run into a problem with the Step Into tool in VBA (7.1). Here's my code: Public LastInitial As Integer Sub FormatRecipeFile() 'Get the row number of the…
user7143487
1 2 3 4 5
6