How to set the complete version number from vb6 (VPIaccessMaker.vbg
),from Visual Basic i can set Major.Minor.Revision as 3.2.2 in that case my exe version will be 3.2.0.2.How to set build number in this case like 3.2.1.2.
Asked
Active
Viewed 4,082 times
5

Matt Wilko
- 26,994
- 10
- 93
- 143

Shrivallabh
- 2,863
- 2
- 27
- 47
2 Answers
7
You can use the vbAdvance add-in which allows the setting of the version build. It is now freeware, but no longer supported. You can learn more and download it here.

Kelly Ethridge
- 1,669
- 1
- 11
- 12
-
1Hi Kelly, a Long time ago i was fallen in love with VBCorlib ;) – OlimilOops Oct 08 '13 at 16:19
-
Hi, thanks for the support. I've been trying to carve out some spare time to update VBCorLib a bit, but it's been difficult. I still tinker with it though. – Kelly Ethridge Oct 08 '13 at 23:52
3
Answer is you can't with native VB6.
Note that you can do this in VB.NET but not in VB6 - See this page from MSDN for differences between VB6 and VB.NET projects with regard to version numbering.
You could possibly alter the version of the compiled exe- see this question for some suggestions on this:
How do I set the version information for an existing .exe, .dll?

Community
- 1
- 1

Matt Wilko
- 26,994
- 10
- 93
- 143