Results 1 to 3 of 3

Thread: Version Info

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Aug 2000
    Location
    Birmingham, AL
    Posts
    1,276

    Question Version Info

    How do you set Version info of you exe?

  2. #2
    Kitten CornedBee's Avatar
    Join Date
    Aug 2001
    Location
    In a microchip!
    Posts
    11,594
    add a version resource to the project and set it's values

    All the buzzt
    CornedBee

  3. #3

    Thread Starter
    Frenzied Member
    Join Date
    Aug 2000
    Location
    Birmingham, AL
    Posts
    1,276
    Added this code to resource file and still doesn't work.
    Code:
    VS_VERSION_INFO VERSIONINFO
     FILEVERSION 1, 0, 0, 1
     PRODUCTVERSION 1, 0, 0 , 1
     FILEFLAGSMASK 0x3fL
    #ifdef _DEBUG
     FILEFLAGS 0x1L
    #else
     FILEFLAGS 0x0L
    #endif
     FILEOS 0x4L
     FILETYPE 0x1L
     FILESUBTYPE 0x0L
    BEGIN
        BLOCK "StringFileInfo"
        BEGIN
            BLOCK "040904B0"
            BEGIN
                VALUE "CompanyName", "Name\0"
                VALUE "FileDescription", "Description\0"
                VALUE "FileVersion", "1.0\0"
                VALUE "InternalName", "\0"
                VALUE "LegalCopyright", "Copyright (C) 2001\0"
                VALUE "LegalTrademarks", "\0"
                VALUE "OriginalFilename", "File\0"
                VALUE "ProductName", "App\0"
                VALUE "ProductVersion", "1.0\0"
            END
        END
        BLOCK "VarFileInfo"
        BEGIN
            VALUE "Translation", 0x409, 1200
        END
    END
    What am I missing?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width