Greetings Everyone;
Is there a way to find out about the "version" of any file?
For example, I can see the "file version" for "Winword.exe" is: 9.0.0.3822. How can that be done using VB?
Thanks in advance,
Printable View
Greetings Everyone;
Is there a way to find out about the "version" of any file?
For example, I can see the "file version" for "Winword.exe" is: 9.0.0.3822. How can that be done using VB?
Thanks in advance,
Ummmm, I think you could use this API
Code:Public Declare Function GetFileVersionInfo Lib "version.dll" Alias "GetFileVersionInfoA" (ByVal lptstrFilename As String, ByVal dwHandle As Long, ByVal dwLen As Long, lpData As Any) As Long
Thank you again for your time and info.
Also, my apology to you and everyone else because I just noticed that I could just do a search myself on this forum to find the solution.