Announcement

Collapse
No announcement yet.

Version Stamp

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Version Stamp

    I am sure I remember a thread discussing creating version stamp
    data in a resource file, but I can't find the thread in my searches.

    Has anyone created version data for windows?

    I'd like to have a Version tab on the properties page for each DLL.


    ------------------
    Thanks,

    John Kovacich
    Thanks,

    John Kovacich
    Ivory Tower Software

  • #2
    See the VERSIONINFO structure in the PBNOTE.RC or SKELETON.RC files
    in your PB/DLL example files.

    ------------------
    Tom Hanlin
    PowerBASIC Staff

    Comment


    • #3
      My idea: download my version info, either from Power Basic (Files section) or from my website at basicguru.com

      ------------------
      mailto:[email protected][email protected]</A>
      www.basicguru.com/zijlema/

      Egbert Zijlema, journalist and programmer (zijlema at basicguru dot eu)
      http://zijlema.basicguru.eu
      *** Opinions expressed here are not necessarily untrue ***

      Comment


      • #4
        From my Winlog program, I believe Egbert discovered the cure for the wrong field highlighting (??) with the BLOCK 040904E4..


        Code:
        VS_VERSION_INFO VERSIONINFO
        FILEVERSION 5, 0, 0, 0
        PRODUCTVERSION 5, 0, 0, 0
        FILEOS VOS_WINDOWS32
        FILETYPE VFT_APP
        BEGIN
          BLOCK "VarFileInfo"
            BEGIN
              VALUE "Translation", 0x409, 1252
            END
          BLOCK "StringFileInfo"
          BEGIN
            BLOCK "040904E4"
            BEGIN
              VALUE "CompanyName",      "Computer Creations Software\000"
              VALUE "FileDescription",  "Application\000"
              VALUE "FileVersion",      "5.00\000"
              VALUE "InternalName",     "Winlog98/NT\000"
              VALUE "OriginalFilename", "WINLOG.EXE\000"
              VALUE "LegalCopyright",   "Copyright (c) 2000 Computer Creations Software\000"
              VALUE "LegalTrademarks",  "\000"
              VALUE "ProductName",      "Winlog For Windows 2000\000"
              VALUE "ProductVersion",   "5.00\000"
            End
          End
        End
        ------------------
        Scott
        mailto:[email protected][email protected]</A>
        Scott Turchin
        MCSE, MCP+I
        http://www.tngbbs.com
        ----------------------
        True Karate-do is this: that in daily life, one's mind and body be trained and developed in a spirit of humility; and that in critical times, one be devoted utterly to the cause of justice. -Gichin Funakoshi

        Comment

        Working...
        X