Important Notice
The pages on this site contain documentation for very old MS-DOS software,
purely for historical purposes.
If you're looking for up-to-date documentation, particularly for programming,
you should not rely on the information found here, as it will be woefully
out of date.
SUBITEMSIZE (1.2)
◄Up► ◄Next► ◄Previous►
────────────────────────────────────────────────────────────────────────────
The Resource Compiler SUBITEMSIZE Statement
SUBITEMSIZE size
The SUBITEMSIZE statement specifies the size, in words, of each help subitem
in a help subtable. The minimum size is two words, and each help subitem in
a help subtable must be the same size. When used, the SUBITEMSIZE statement
must appear after the HELPSUBTABLE statement and before the BEGIN keyword.
You do not need to use the SUBITEMSIZE statement if the help subitems are
the default size (2).
Field Description
────────────────────────────────────────────────────────────────────────────
size Specifies the size of each help subitem. This value must be an
integer.
Example
The SUBITEMSIZE statement in this example specifies that each HELPSUBITEM
statement contains three words.
HELPSUBTABLE 1
SUBITEMSIZE 3
BEGIN
HELPSUBITEM IDCLD_FILEMENU, IDHP_FILEMENU, 5
HELPSUBITEM IDCLD_HELPMENU, IDHP_HELPMENU, 6
END
See Also
HELPITEM, HELPSUBITEM, HELPSUBTABLE, HELPTABLE
♦