How to determine the process that currently using a specific DLL

c++, visual-studio, windows

Solution

Process Explorer has a facility that allows you to search through the currently running processes for a specific file. To perform this search go to `Find`->`Find Handle or DLL...` and then enter the name of the file you are interested in.

Problem

I met a problem when building with Visual studio, it says one DLL is not accessible because it is currently used by another process, my question is how can I determine the "another process"?

Original source