parse errors are usually caused by a missing semicolon or something like that. does your error message tell you what line of the code the error is on?
post your source code
ross
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2002-10-09
Contents of a file of resources:
#include <winver.h>
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1, 90, 0, 3000
PRODUCTVERSION 1, 90, 3000
FILEOS VOS_NT_WINDOWS32 // Message [Resource Error] parse error
FILETYPE VFT_APP
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "CompanyName", "MyCompany Corp.\000\000"
VALUE "FileDescription", "My Program\000"
VALUE "FileVersion", "1.90.3000\000\000"
VALUE "ProductName", "Proba\0"
VALUE "ProductVersion", "1.90.3000\0"
VALUE "InternalName", "Proba\000"
VALUE "LegalCopyright", "(C) MyCompany Corp.,2002\000\000"
VALUE "OriginalFilename", "Proba.exe\000"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
At compilation of the project with a file of resources the message on a mistake is given out.
Contents of a file File.rc:
FILEOS VOS_NT_WINDOWS32
Error:
[ Resource Error] parse error
Why? Thanks for your support!
Alex.
parse errors are usually caused by a missing semicolon or something like that. does your error message tell you what line of the code the error is on?
post your source code
ross
Contents of a file of resources:
#include <winver.h>
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1, 90, 0, 3000
PRODUCTVERSION 1, 90, 3000
FILEOS VOS_NT_WINDOWS32 // Message [Resource Error] parse error
FILETYPE VFT_APP
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "CompanyName", "MyCompany Corp.\000\000"
VALUE "FileDescription", "My Program\000"
VALUE "FileVersion", "1.90.3000\000\000"
VALUE "ProductName", "Proba\0"
VALUE "ProductVersion", "1.90.3000\0"
VALUE "InternalName", "Proba\000"
VALUE "LegalCopyright", "(C) MyCompany Corp.,2002\000\000"
VALUE "OriginalFilename", "Proba.exe\000"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END
Why?