Vb6 where the function was called from

I recently inherited the VB6 project. This is quite active, and my problem is that many functions call this centralized function. The point is, when I am, I get a ton of different places in the project that make this call. Is there a way to see in debug mode what function is called a function that has a breakpoint?

For example: funcA calls funcZ funcB calls funcZ funcC calls funcZ it continues and continues ...

If I put a breakpoint on funcZ, anyway, in VB6, can I see which function is called funcZ (A, B or C in my example)?

Just wondering...

+3
source share
3 answers

Yes. Press Ctrl+ Lto see the call stack.

+12
+5

What you seem to be asking is stack trace. The memory does not work, how easy / difficult it is, so a quick google search raised this question . Combine this with some exit to the nearest window and you should be good.

Edit : Wim's answer is much better.

+2
source

All Articles