I'm running C++Builder 11.2, modifying an old program with a Form that contains a TImage and a TBitBtn (I first wrote the program 10 years ago, so I don't remember all of its details). A routine copies the Picture in the TImage to the Clipboard when the button is clicked.
The problem: The copy routine is also called when the mouse pointer is over the TImage and the C key is pressed. But I can't find the code where the mouse status and pressing the C key cause the copy routine to be called.
Can the debugger tell me what code is calling the copy routine?
Could the mouse-over-TImage condition and C key press be established outside of the normal code, such as somewhere in the Object Inspector?
This is the entire call stack for the problematic case:

I assume the numbers are addresses. How do I associate those with lines of code in my program?