C CJ Taylor Mar 16, 2004 #1 How do I get the version of an assembly using System.Reflection.Assembly class? Thanks, cJ
H Herfried K. Wagner [MVP] Mar 16, 2004 #3 * "CJ Taylor said: How do I get the version of an assembly using System.Reflection.Assembly class? Click to expand... \\\ MsgBox( _ System.Reflection.Assembly.GetExecutingAssembly(_ ).GetName().Version.ToString() _ ) /// - or - \\\ MsgBox( _ System.Windows.Forms.Application.ProductVersion.ToString() _ ) ///
* "CJ Taylor said: How do I get the version of an assembly using System.Reflection.Assembly class? Click to expand... \\\ MsgBox( _ System.Reflection.Assembly.GetExecutingAssembly(_ ).GetName().Version.ToString() _ ) /// - or - \\\ MsgBox( _ System.Windows.Forms.Application.ProductVersion.ToString() _ ) ///