If I set a breakpoint on a method, how can I see what called the method, when the breakpoint is hit in Visual Studio 2008?
Check the Call Stack window (from the menu: Debug > Windows > Call Stack). Double clicking each entry there will take you to the calling statement. You can also right click on it to enable/disable showing external code items and calls from other threads.