home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 16 / CD_ASCQ_16_0994.iso / news / 4611 / fw16d.ins / SAMPLES / RESMENU.RC < prev    next >
Text File  |  1994-03-10  |  418b  |  25 lines

  1. #include "ResMenu.ch"
  2.  
  3. Main MENU 
  4. BEGIN
  5.     POPUP "&Some Info"
  6.     BEGIN
  7.         MENUITEM "About &FiveWin...", ID_ABOUT
  8.         MENUITEM "About &ResMenu Test...", ID_TEST
  9.         MENUITEM SEPARATOR
  10.         MENUITEM "&Exit this Test...", ID_EXIT
  11.     END
  12.  
  13.     POPUP "&Files"
  14.     BEGIN
  15.         MENUITEM "&Clients...", 210
  16.         POPUP "&Stock"
  17.         BEGIN
  18.             MENUITEM "&New",    221
  19.             MENUITEM "&Delete", ID_DELETE
  20.         END
  21.  
  22.     END
  23.  
  24. END
  25.