|
-
Aug 5th, 2002, 04:57 AM
#1
Thread Starter
New Member
deploying project
How do you get the installer to put the program on the start > programs and in the start > startup folders?
PLus how do you get the version number so I can display it on a form?
Last edited by vlitim; Aug 5th, 2002 at 05:07 AM.
-
Aug 5th, 2002, 06:49 AM
#2
Lively Member
I don't know about the deploying project bit.
Do you mean you just want to get the version number of your program? if so you double-click on the AssemblyInfo file in your project and set the variables there such as Title, Company name and Version, ect.
You then have to call it like this:
Code:
Major = System.Diagnostics.FileVersionInfo.GetVersionInfo(System.Reflection.Assembly.GetExecutingAssembly.Location).ProductMajorPart()
This will get the Major number, i'll leave it up to you to get the others.
Last edited by SAS-Trooper; Aug 5th, 2002 at 06:53 AM.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|