📄 wrcerrs.gml
字号:
of nesting than are allowed.
.*
.keep
.errnote 55 Unknown preprocessor directive
.np
This error occurs when a command that is not a valid preprocessor
directive is prefixed by a #.
.*
.keep
.errnote 56 Invalid #line directive
.np
This error is reported when a #line directive is encountered in a
resource script file but the parameters after it are not valid.
.*
.keep
.errnote 57 Unknown option '<option>'
.np
This error is reported when a command line option is specified that
the &wrcname does not understand.
.*
.keep
.errnote 58 "<file>" is not a valid EXE file.
.np
This error occurs when the &wrcname expects the given file to be an
EXE file but it is either not an EXE file or it is a corrupted EXE
file. You can do two things:
.begbull $compact
.bull
Make sure the correct file is specified.
.bull
Regenerate the EXE file by relinking.
.endbull
.*
.keep
.errnote 59 Unable to produce fastload section.
.np
This error occurs when the &wrcname is unable to create a fastload
section in the given EXE because one of the segments in the EXE is
larger than 64K. This message is only a warning; a working executable
including resources is still produced. This message does not appear if
the -k option is used.
.*
.keep
.errnote 60 Can't find file "<file>".
.np
This message indicates that the &wrcname is unable to locate an input
file needed to complete the operation. This file may be one of the
files specified on the command line or one included in the
.fi .RC
file by a statement such as ICON, BITMAP, RCDATA, or CURSOR.
You can do two things:
.begbull $compact
.bull
For files specified on the command line, make sure the file was
specified correctly and that it exists in the current directory or in
the specified directory if a path for it is given on the command line.
.bull
For files included by a
.fi .RC
file statement, make sure the file is specified correctly and exists
in the current directory or a directory specified by the INCLUDE
environment variable.
.endbull
.*
.keep
.errnote 61 Unknown target OS: '<os>'
.np
This message indicates that on the &wrcname command line the -bt=<os>
option is specified and the compiler does not recognize the specified
<os>. The valid values for <os> are windows, nt and os2.
.*
.keep
.errnote 62 <preproc_msg>
.np
This indicates an error occurred while preprocessing a
.fi .RC
file.
The text of the message contains information about the error.
.*
.keep
.errnote 63 Keyword "<keyword>" is only valid for Win32.
.np
While creating a non-Win32
.fi .RES
file, the &wrcname encountered a keyword that is only valid for Win32.
.*
.keep
.errnote 64 Keyword "<keyword>" not currently being supported.
.np
A keyword was used in a
.fi .RC
file that is not supported by the &wrcname.
.*
.keep
.errnote 65 Resource strings not found.
.np
This message indicates that your copy of the &wrcname has been
corrupted. Try reinstalling the compiler from your original
installation disks. If this fails, report the problem to &company
Technical Support.
.*
.keep
.errnote 66 Error can't find character translation file "<file>".
.np
Character translation files are data files that the &wrcname uses when
creating a Win32
.fi .RES
file to convert text into UNICODE. This message indicates that the
&wrcname cannot locate the given translation file that it requires.
The solution is to find the file and make sure it is in your path.
.*
.keep
.errnote 67 Error opening character translation file "<file>": <reason>.
.np
Character translation files are data files that the &wrcname uses when
creating a Win32
.fi .RES
file to convert text into UNICODE. This message indicates that the
&wrcname found the character translation file but was unable to access
it for the given reason.
.*
.keep
.errnote 68 Error reading character translation file "<file>": <reason>.
.np
&read_err
.*
.keep
.errnote 69 "<file>" is not a valid character translation file.
.np
Character translation files are data files that the &wrcname uses when
creating a Win32
.fi .RES
file to convert text into UNICODE. This error occurs when the &wrcname
finds a file with the same name as the expected character translation
file but this file is either not a character translation file or is a
corrupted character translation file. You can do two things:
.begbull $compact
.bull
Find the correct character translation file (the one that came with
this version of the &wrcname) and put it in a directory that appears
in your path before any other directory that contains a file of that
name.
.bull
Try reinstalling the file from your original distribution disks.
.endbull
.*
.keep
.errnote 70 Unable to read character translation file "<file>": wrong version.
.np
Character translation files are data files that the &wrcname uses when
creating a Win32
.fi .RES
file to convert text into UNICODE. This error occurs when the &wrcname
finds a file with the same name as the expected character translation
file but is unable to read it because its version is incompatible with
this version of the compiler. You can do two things:
.begbull $compact
.bull
Find the correct character translation file (the one that came with
this version of the &wrcname) and put it in a directory that appears
in your path before any other directory that contains a file of that
name.
.bull
Try reinstalling the file from your original distribution disks.
.endbull
.*
.keep
.errnote 71 Option '<option>' not valid for a Win32 .RES file.
.np
This indicates that while producing a Win32
.fi .RES
file, a command line parameter was specified that is not valid for Win32
.fi .RES
files.
.*
.keep
.errnote 72 L"..." construct is not valid for Win16.
.np
This error occurs when the user enters a string prefixed by the letter
(i.e. L"Bob") in an
.fi .RC
file being turned into a Win16
.fi .RES
file.
The L specifier is meaningless for Win16 and will be ignored.
This is a warning only.
.*
.keep
.errnote 73 Options '<option>' and '<option>' may not be specified together.
.np
This error occurs when two options specified on the command line are
not compatible with one another. You should remove one of the specified
options.
.keep
.errnote 74 Environment variable '<var>' is not set.
.np
An environment variable specified on the command line using the @
option had no value set for it.
.*
.keep
.errnote 76 MENUITEM must have ID value.
.np
A MENUITEM in a MENU resource must contain a menu id. This message is
issued when a MENUITEM in a menu resource does not have a menu id
specified for it.
.exam begin
mymenu MENU
BEGIN
MENUITEM "my item"
END
.exam end
.np
Menu items in menuex resources do not need a menu id.
.*
.keep
.errnote 77 Id/Type/State/HelpId not allowed for MENU POPUP controls.
.np
A POPUP statement in a MENU resource may not be followed by any
modifiers (such as an ID). This message is issued when a POPUP
statement in a MENU resource is followed by one or more modifiers.
.exam begin
mymenu MENU
BEGIN
POPUP "my popup", MY_ID
END
.exam end
.np
POPUP statements in menuex resources may be followed by modifiers.
.*
.keep
.errnote 78 MENUITEM options are not allowed for MENUEX POPUP controls.
.np
A POPUP statement in a MENUEX resource may not use optional modifiers
such as CHECKED or GREYED. This message is issued when a POPUP
statement in a MENUEX resource contains one of these optional
modifiers. In a MENUEX resource these modifiers are replaced by MFT_*
and MFS_* flags.
.*
.keep
.errnote 79 Type/State not valid for MENU MENUITEM controls.
.np
A MENUITEM statement in MENU resource must not specify state and type
information using the MFT_* or MFS_* flags. This message is issued
when type or state information is specified for a MENUITEM in a MENU
resource.
.exam begin
mymenu MENU
BEGIN
MENUITEM "item", MY_ID, MFT_STRING, MFS_GREYED
END
.exam end
In a MENU resource this information is specified using option
modifiers such as GREYED or CHECKED.
.*
.keep
.errnote 80 MENUITEM options not valid for MENUEX MENUITEM controls.
.np
A MENUITEM statement in a MENUEX resource may not use optional
modifiers such as CHECKED or GREYED. This message is issued when a
MENUITEM statement in a MENUEX resource contains one of these optional
modifiers. In a MENUEX resource these modifiers are replaced by MFT_*
and MFS_* flags.
.*
.keep
.errnote 81 HELPID not valid for DIALOG.
.np
You may not specify a help id for a DIALOG resource. This message is
issued when a help id is found with a DIALOG resource.
.exam begin
my_dlg DIALOG 0, 0, 100, 100, MY_HELPID
.exam end
.np
A help id may be specified for a DIALOGEX resource.
.*
.keep
.errnote 82 Font Italic setting not allowed for DIALOG.
.np
You may not specify an italic font for a DIALOG resource. This message
is issued when the italic flag has been specified in a FONT statement
in a DIALOG resource.
.exam begin
my_dlg DIALOG 0, 0, 100, 100
FONT "helvetica", 8, FW_BOLD, 1
.exam end
.np
The italic flag may be specified for DIALOGEX resources.
.*
.keep
.errnote 83 Font Weight setting not allowed for DIALOG.
.np
You may not specify a font weight for a DIALOG resource. This message
is issued when a font weight has been specified in a FONT statement
in a DIALOG resource.
.exam begin
my_dlg DIALOG 0, 0, 100, 100
FONT "helvetica", 8, FW_BOLD
.exam end
.np
A font weight may be specified for DIALOGEX resources.
.*
.keep
.errnote 84 HELPID not valid for DIALOG controls.
.np
You may not specify a help id for a control in a DIALOG resource. This
message is issued when a help id is specified for a control in a
DIALOG resource.
.exam begin
my_dlg DIALOG 0, 0, 100, 100
BEGIN
CONTROL "None", MY_ID, "BUTTON",
BS_AUTORADIOBUTTON | WS_CHILD | WS_VISIBLE
12, 40, 30, 10, 0, MY_HELPID
END
.exam end
.np
A help id may be specified for a control in DIALOGEX resource.
.*
.keep
.errnote 85 Data Elements not valid for DIALOG controls.
.np
This indicates that a list of data values has been found following a
control in a DIALOG resource. Data can only follow control statements
in a DIALOGEX resource.
.*
.keep
.errnote 86 <value> is not a valid resource id.
.np
This message is issued when a numeric identifier has been specified
for a resource but the value is outside the allowable range.
.*
.keep
.errnote 87 User interrupt detected.
.np
Processing was stopped to allow another user action to occur.
.*
.keep
.errnote 88 Resource type for resource "<resource>" is greater than 32767.
.np
When a number is used to identify the type of a resource the number
must be between 0 and 32767. This message is issued when a number has
been specified as a resource type that is outside the allowable range.
.exam begin
MYRES 0xF000 { 0 }
.exam end
.*
.keep
.errnote 89 Resource ID "<id>" is greater than 32767.
.np
When a number is used to identify a resource the number must be
between 0 and 32767. This message is issued when a number has been
specified as a resource identifier that is outside the allowable
range.
.exam begin
0xF000 ICON "t.ico"
.exam end
.*
.keep
.errnote 90 Unmatched quotation mark on command line.
.np
Quotations marks may be used on the WRC command line to delimit file
or path names. This message indicates that a quotation mark was found
on the command line but no matching quotation mark could be found.
.*
.keep
.errnote 100 Trying to add a Win16 or Win32 RES file "<file>" to an OS/2 executable "<file>".
.np
This error occurs when you attempt to run pass two of the &wrcname
with a Win16 or Win32
.fi .RES
file and an OS/2 executable file. You can do two things:
.begbull $compact
.bull
Recreate the
.fi .RES
file using the -bt=os2 switch
.bull
Make sure the correct file is specified.
.endbull
.*
.keep
.errnote 101 <value> is not a valid resource type.
.np
This message is issued when a numeric type has been specified
for a resource but the value is outside the allowable range.
.*
.eerrsect
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -