Reputation: 2111
There is a problem coming from a third-party DLL in our application, and it happens on a client's computer, which doesn't have Visual Studio installed.
Is there a way to 'break' the application and see which DLL is executing (for a given thread) at that moment? Some lighter-weight tool, perhaps?
Upvotes: 0
Views: 72
Reputation: 79467
You can use Process Explorer. Double click on a process, then open Threads tab, and double click on a thread.
Upvotes: 1