You can use this find the version of a Windows DLL.
Code: Select all
; Get the version of a Windows DLL.
; Made by Chris Way (03/05/2004)
dll.DllVersionInfo\cbSize = SizeOf(DllVersionInfo)
OpenLibrary(0,"Shell32.dll") ; The DLL to get the version of
CallFunction(0,"DllGetVersion",@dll)
OpenConsole()
PrintN(Str(dll\dwMajorVersion))
PrintN(Str(dll\dwMinorVersion))
PrintN(Str(dll\dwBuildNumber))
PrintN(Str(dll\dwPlatformID))
Input()
CloseConsole()
I havent seen this around here so I hope it hasn't been posted before.
Hope its helpful.

