Ladvánszky Károly wrote:[color=blue]
> Could someone suggest me how to gather various information (version number
> etc.) from a Windows DLL?
> Thanks for any help,
>
> Károly[/color]
Find the DLL in Windows Explorer, right click on the dll, and select
properties. There should be a Version tab (I think ... haven't booted
my Windows PC in awhile).
"Ray Smith" <ray@rays-web.com> az alábbiakat írta a következo hírüzenetben: 3f697e27@news.s yd.ip.net.au...[color=blue]
> Ladvánszky Károly wrote:[color=green]
> > Could someone suggest me how to gather various information (version[/color][/color]
number[color=blue][color=green]
> > etc.) from a Windows DLL?
> > Thanks for any help,
> >
> > Károly[/color]
>
> Find the DLL in Windows Explorer, right click on the dll, and select
> properties. There should be a Version tab (I think ... haven't booted
> my Windows PC in awhile).
>
> For a utility to give you lots more info see:
> http://www.dependencywalker.com/
>
> Ray Smith
>
>[/color]
"Ladvánszky Károly" <lk@digicart.hu > writes:
[color=blue]
> Could someone suggest me how to gather various information (version number
> etc.) from a Windows DLL?
> Thanks for any help,[/color]
I looked at win32 all but it seems the functions aren't exposed
there. Grap ctypes by Thomas Heller and the MSDN Platform SDK
documenation.
Here's what you need:
from ctypes import *
windll.version. GetFileVersionI nfoA
Syver Enstad <syver@inout.no > writes:
[color=blue]
> "Ladvánszky Károly" <lk@digicart.hu > writes:
>[color=green]
>> Could someone suggest me how to gather various information (version number
>> etc.) from a Windows DLL?
>> Thanks for any help,[/color]
>
> I looked at win32 all but it seems the functions aren't exposed
> there. Grap ctypes by Thomas Heller and the MSDN Platform SDK
> documenation.[/color]
Right. There's even a sample (samples\Window s\VersionInfo.p y) in the
source distribution.
Comment