Chris Burrows wrote:
	As far as I know version information is associated with a Win32 application using a Win32 resource file. Usually development systems (e.g. Visual Studio, Delphi etc.) do this as part of the build process. The BlackBox DevLinker documentation states
	... windows resource files (.res), and type libraries (.tlb) are supported. The resource files are loaded from the Rsrc or Win/Rsrc directory.
	so I believe the process for BlackBox would be:
	1. Enter the version information into a text .rc file (e.g. BlackBox.rc) in the BlackBox Rsrc folder.
2. Use a resource compiler to compile the .rc file into a .res file (e.g. BlackBox.res).
3. Include BlackBox.res in the list of items on the normal BlackBox DevLinker.Link command line
	I tried to use this rc code and it works. The .res file should go first in DevLinker resources sequence.
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,7,0,1
PRODUCTVERSION 1,7,0,1
FILEFLAGSMASK 0x3fL
FILEFLAGS 0x8L
FILEOS 0x40004L
FILETYPE 0x2L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo" 
BEGIN
BLOCK "040904b0" 
BEGIN
VALUE "Comments", "\0" 
VALUE "CompanyName", "BlackBox Framework Center\0" 
VALUE "FileDescription", "BlackBox Component Builder\0" 
VALUE "FileVersion", "1,7,0,1\0" 
VALUE "InternalName", "BlackBox Component Builder\0" 
VALUE "LegalCopyright", "Copyright © 1994 - 2013 Oberon microsystems, Inc., Switzerland. All rights reserved.\0" 
VALUE "LegalTrademarks", "\0" 
VALUE "OriginalFilename", "BlackBox.exe\0" 
VALUE "PrivateBuild", "1\0" 
VALUE "ProductName", "BlackBox Component Builder\0" 
VALUE "ProductVersion", "1, 7, 0, 1\0" 
VALUE "SpecialBuild", "\0" 
END
END
BLOCK "VarFileInfo" 
BEGIN
VALUE "Translation", 0x409, 1200
END
END
	I compiled it this wingw32 compiler on Ubuntu, so it will also work on Debian (our VPS).
sudo apt-get install wingw32
/usr/bin/i586-mingw32msvc-windres -i BlackBox.rc -o BlackBox.res
	In windows I compiled this file with next command:
C:\MinGW\bin>windres.exe -i C:\Users\Ivan\Desktop\bbcb\Win\Rsrc\BlackBox.rc -o C:\Users\Ivan\Desktop\bbcb\Win\Rsrc\BlackBox.res