Hi, I would like to add on my application an "About..." dialog box. On this
dialog I would like to display the NETCF and OpenNETCF version currently used
by the software.
With version I mean the number that appears when I click, for example, on
cgautil file in Windows folder.
Is it possible to do that ?
Thank you in advance.
Keven Corazza
SierraSoft
The OpenNETCF SDF version can be retrieved in this way:
Assembly a = Assembly.Load("OpenNETCF");
string version = a.GetName().Version.ToString();
The .NET CF version:
string version = Environment.Version.ToString()
--
Sergey Bogdanov [.NET CF MVP, MCSD]
http://www.sergeybogdanov.com
> Hi, I would like to add on my application an "About..." dialog box. On this
> dialog I would like to display the NETCF and OpenNETCF version currently used
[quoted text clipped - 9 lines]
> Keven Corazza
> SierraSoft
Keven Corazza - 11 Jan 2006 15:21 GMT
Wonderful! Thank you a lot.
Keven
> The OpenNETCF SDF version can be retrieved in this way:
>
[quoted text clipped - 22 lines]
> > Keven Corazza
> > SierraSoft