The Help pull-down template file "HELP91PD.INC" must be included in the main application source file, prior to using the definition within an menus. As the routines used by the responses defined with menu pull-down are declared within ESLHELP.INC, this file must included in the main application source file, prior to including the HELPPD91.INC.
The "Help" pull-down item can then be included any menu, as per the following example;
include eslhelp.inc
include helppd91.inc
action bar Menu_AB is
pulldown File_PD text "~File"
choice New_IC text "~New"
choice Open_IC text "~Open"
choice Save_IC text "~Save"
choice SaveAs_IC text "Save ~As"
separator
choice Exit_IC text "E~xit"
end pulldown
item Help
end action bar
primary region Primary_GR size 600 400
at position 100 100
title bar "Primary"
system menu
minimize button
maximize button
size border
action bar Menu_AB
Note: Following the CUA'91 standard the Help pull-down appears as the last item within the menu.