|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
show manifest version at runtime (vc++ .net)
Is there a way to show the version of the manifest(my program) at runtime? I know that .net saves this number in the exe-file so how can I get it out of there?
|
|
#2
|
|||
|
|||
|
String *sVersion = Application::get_ProductVersion();
|
|
#3
|
|||
|
|||
|
But this version number is different to that in the Manifest! Where can I change the version number which your code gives out?
|
|
#4
|
|||
|
|||
|
I think it's in the AssemblyInfo.cpp file which should be created with your project.
|
|
#5
|
|||
|
|||
|
If you have an VERSION_INFO-Ressource you can use this to get Version-Infos:
Code:
label1->Text=this->ProductName; label2->Text=this->ProductVersion; |
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > .Net Development > show manifest version at runtime (vc++ .net) |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|