Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- The Guide to Clip-4-Win version 3.0 - <b>endmenu</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
ENDMENU
Mark the end of a (bar) menu
------------------------------------------------------------------------------

Syntax
#include "windows.ch"
#include "topclass.ch"   --or--   #define  NO_C4WCLASS
#include "commands.ch"
ENDMENU

Arguments
None.

Description
This command can be used to finish defining a menu in either a
non-OO application (by defining NO_C4WCLASS) or an OO
application.

Example
MENU IN self
    POPUP "&File"
        MENUITEM "&Browse..."    COMMAND Browse      ;
            HELP WHelp{"Browse a file..."}
        MENUITEM SEPARATOR
        MENUITEM "E&xit"         COMMAND Exit        ;
            HELP WHelp{"Exit the application"}
    ENDPOPUP
    POPUP "&Help"
        MENUITEM "&About"        COMMAND HelpAbout   ;
            HELP WHelp{"About this application"}
    ENDPOPUP
ENDMENU


See Also: MENU MENUITEM POPUP

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson