* "=?Utf-8?B?Y2hhem1hbmlhbg==?=" <chazmanian@discussions.microsoft.com> scripsit:
[quoted text, click to view] > Is there an easy way to garner the build information from the assemblyinfo.cs
> file in my Windows forms application and then display that in a label or
> labels in an "About" box?
\\\
MsgBox( _
System.Reflection.Assembly.GetExecutingAssembly( _
).GetName().Version.ToString() _
)
///
- or -
\\\
MsgBox( _
System.Windows.Forms.Application.ProductVersion.ToString() _
)
///
--
Herfried K. Wagner [MVP]