Version Number of a an external application

  • Thread starter Thread starter Ryan
  • Start date Start date
R

Ryan

I am using vb.net to launch an external application (.exe); how do I capture
this external applications's version number in my vb.net app?
 
I am using vb.net to launch an external application (.exe); how do I capture
this external applications's version number in my vb.net app?

Hi Ryan,
.NET provied easy access to a process's version info using
FileVersionInfo class located under System.Diagnostics namespace.

For example, you can get file version:
Dim info As System.Diagnostics.FileVersionInfo
info = System.Diagnostics.FileVersionInfo.GetVersionInfo("c:\rich-text-
editor.exe")
MsgBox(info.FileVersion.ToString)

Look at other properties and method members under
"System.Diagnostics.FileVersionInfo" to get more info about process's
name and version info.

Hope this helps,

Onur Güzel
 
Ryan said:
I am using vb.net to launch an external application (.exe); how do I
capture
this external applications's version number in my vb.net app?

Win32 version resource:

'FileVersionInfo'.

Assembly version number:

'Assembly.Load*', 'Assembly.GetName', 'AssemblyName.Version'.
 
Back
Top