Hello Friends,i have question about the BreakSet command. Is there a way to set a Breakpoint on the line number where a function is called WITHOUT using the line number ?
for example:
void main() { // do something TestFunction(); // do something TestFunction(); } void TestFunction() { // do something }
I want to set a Breakpoint on the second call of TestFunction (line 7).
Thanks for your help :) Hannes
Hello, So thanks for your reply :) You are right for this example that way would work. But i need to do this in a more Generic way.