Hello,

I am trying to figure out how to display the applications version
information onto a label. How would I do this?

-T

Re: Displaying version info onto a label by Roy

Roy
Tue Nov 25 10:27:18 CST 2003

On Tue, 25 Nov 2003 10:41:46 -0500, TGF wrote:

> Hello,
>
> I am trying to figure out how to display the applications version
> information onto a label. How would I do this?
>
> -T

Look into System.Reflection.Assembly class.
Assembly.GetStartingAssembly().GetName() returns(among other info) what you
need.
--
Roy Osherove
weblog: http://www.iserializable.com

Re: Displaying version info onto a label by hirf-spam-me-here

hirf-spam-me-here
Tue Nov 25 10:54:58 CST 2003

* "TGF" <tfitz@engr.uconn.edu[remove brackets]> scripsit:
> I am trying to figure out how to display the applications version
> information onto a label. How would I do this?

'System.Reflection.Assembly.GetExecutingAssembly().GetName().Version' or
'Application.ProductVersion'.

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>