Note: This applies to the PC
The compiled executables that B4PPC produces usually don't have the correct information within them. For example, if you place a compiled program in the apps directory for PortableAppsMenu the program icon will be listed, but not the name. This is because these programs get information from the resource area (usually in the "Version Info" section)
One way that I have found to fix this is with Resource Hacker:
Resource Hacker
Here is an example resource that I corrected for the Windiff program:
Looking at the resource area for snip (a B4PPC utility written by tremera, used to store snips of code) shows this:
Adding a value for ProductName with Resource Hacker fixes the entry for the PortableAppsMenu.
The compiled executables that B4PPC produces usually don't have the correct information within them. For example, if you place a compiled program in the apps directory for PortableAppsMenu the program icon will be listed, but not the name. This is because these programs get information from the resource area (usually in the "Version Info" section)
One way that I have found to fix this is with Resource Hacker:
Resource Hacker
Here is an example resource that I corrected for the Windiff program:
B4X:
VALUE "CompanyName", "Microsoft Corporation"
VALUE "FileDescription", "File comparison utility"
VALUE "FileVersion", "5.2.3790.0 (srv03_rtm.030324-2048)"
VALUE "InternalName", "WINDIFF.EXE"
VALUE "LegalCopyright", "© Microsoft Corporation. All rights reserved."
VALUE "OriginalFilename", "WINDIFF.EXE"
VALUE "ProductName", "MS WinDiff"
VALUE "ProductVersion", "5.2.3790.0"
B4X:
VALUE "FileDescription", " "
VALUE "FileVersion", "0.0.0.0"
VALUE "InternalName", "1.exe"
VALUE "LegalCopyright", " "
VALUE "OriginalFilename", "1.exe"
VALUE "ProductVersion", "0.0.0.0"
VALUE "Assembly Version", "0.0.0.0"
Last edited: