Re: [python-win32] Finding DLL's which are in use (loaded)

2010-05-03 Thread Jeremy Nicoll - ml pyw32
Tony Cappellini cappy2...@gmail.com wrote: I need to write a program which copies some dlls from one location to another. However, if any applications which use these dll's are running, Windows won't let the dll copy complete, until the apps which have the dlls loaded have terminated. I'm

Re: [python-win32] Finding DLL's which are in use (loaded)

2010-04-08 Thread niki
Tony Cappellini wrote: I need to write a program which copies some dlls from one location to another. However, if any applications which use these dll's are running, Windows won't let the dll copy complete, until the apps which have the dlls loaded have terminated. I'm looking for a way to

Re: [python-win32] Finding DLL's which are in use (loaded)

2010-04-08 Thread Tony Cappellini
Thanks- but is that attempting to delete a dll? Is there a less-invasive way of detecting a dll in use? Is there a way I can find out which application(s) are using the DLL, so I put that information in a dialog box? These dlls are general purpose and can be used by many applications written by

Re: [python-win32] Finding DLL's which are in use (loaded)

2010-04-08 Thread Aahz
On Wed, Apr 07, 2010, Tony Cappellini wrote: I need to write a program which copies some dlls from one location to another. However, if any applications which use these dll's are running, Windows won't let the dll copy complete, until the apps which have the dlls loaded have terminated. I'm