How can I find the module where the breakpoint is active.
I am working on a moderately complex project. There are several breakpoints set, some inside an if statement to catch only with a condition if met.
I asked CoPilot and it gave me a function. I looked through that function and none of the code showed the arrow indicating the next line to execute. Nothing in the entire file has the breakpoint arrow. That yellow arrow.
Pressing F10 won’t take me there. F9 just showed the little wait circle cycling around. One suggestion instructed to use clt-shift-F5. That did not help. Ask Learn has been working for about two minutes
.
There is no exception handler, I just have a defect in my code.
I understand bing.com is a Microsoft function, have used bing.com several times with no valid result. All kinds of stuff but not what is needed.
Is there a sequence of keystrokes that will take me to the active breakpoint?
Or maybe give me a good search string to get the answer?
In the Output window, click on the Breakpoints tab. You will see a list of all breakpoints that have been set. Double click on any breakpoint and your cursor will go to that line in the edit window.
If your code is stopped on a breakpoint, the breakpoint in the breakpoint list will be in bold and the yellow arrow should point to the line code code in the edit window.
If your breakpoint is inside an if statement, and you're not hitting the breakpoint, move your breakpoint to the if statement and evaluate why you're not executing the conditional part of the if.
I think something is a bit odd on my system. Open View -> Output and nothing opens. Then try the shortcut Alt-2 and it showed up.
Thank you for your time.