PUG
PUG

Reputation: 4472

Change my applications's exe file version in VB6

i made an application in vb6 now i have given it a product version from project/properties but i noticed the win explorer has two tags for exe a product version and a file version.

i want to edit the file version of my app's exe any idea how can i do that? file version should be x.x.x.x

i wanted to to change the file verision not the product version.

Upvotes: 1

Views: 5248

Answers (3)

Dr TJ
Dr TJ

Reputation: 3356

Use Resource Hacker and accomplish this easily,

Download from here

Upvotes: 1

MarkJ
MarkJ

Reputation: 30398

VB6 automatically sets the File version equal to the Product version.
You specify these through the project properties dialog, Make tab, Major Minor and Revision.

  • Product version always has three parts: Major.Minor.Revision
  • File version always has four parts: Major.Minor.0.Revision. Microsoft decided to put an extra zero between Minor and Revision.

Upvotes: 8

MrTelly
MrTelly

Reputation: 14865

From (distant) memory this can be set by looking at the project options dialog. You can place a * into the boxes if you want the version to auto-increment.

Upvotes: 0

Related Questions