Please enable JavaScript to view this site.

ESL Documentation

This file can be included into your ESL application to provide a CUI'91 standard pulldown, which can be added to all the menu's.

############################################################################

#                    Copyright (C) 1982-2004 ESL Syndetic Limited          #

#                            All Rights Reserved.                          #

#                                                                          #

#                                  NOTICE                                  #

#                        PROPRIETARY AND CONFIDENTIAL                      #

#                                                                          #

# This computer program is and contains trade secret and confidential and  #

# proprietary information of ESL Syndetic Limited. All use, disclosure,    #

# and/or reproduction not specifically authorized in writing by            #

# ESL Syndetic Limited is prohibited. This program may also be protected   #

# under the copyright and trade secrets laws of countries other than the   #

# U.S.A.                                                                   #

#                                                                          #

#                                                                          #

############################################################################

#

# Name: HELPPD91.INC

#

# Standard help pulldown template

#

############################################################################

 

#

# Standard help pull-down example, including responses

#

pulldown Help           text "~Help"

                        helpid is 1

    choice HelpIndex    text "Help ~index"

                        helpid is "Help_Index"

    choice ExtendedHelp text "~General help"

                        # Add a helpid here

    choice HelpForHelp  text "~Using help"

                        helpid is "Using_Help"

    choice KeysHelp     text "~Keys help"

                        helpid is "Keys_Help"

#   separator

#   choice About        text "~Product information"

#                       helpid is Product_Information

end pulldown

 

response to item HelpIndex

    # Tell the Windows Help Manager to display the help index window.

    call HelpDisplayHelpIndex()

 

response to item ExtendedHelp

    # Tell the Windows Help Manager to display extended help for the

    # active window.

# Add a call to HelpDisplayHelpPanel() for your general help topic.

 

response to item HelpForHelp

    # Tell the Windows Help Manager to display the standard Help for

    # help panel.

    call HelpDisplayHelpForHelp()

 

response to item KeysHelp

    # Tell the Windows Help Manager to display the keys help panel.

    call HelpDisplayKeysHelp()