home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / PMBASIC.ZIP / PMBASIC.RC < prev    next >
Text File  |  1989-12-11  |  1KB  |  44 lines

  1.  
  2. /*----------------------------------------------------------
  3. --------------
  4. | Program Name: PMBasic.RC
  5. |
  6. | Description:  This is the resource script file for
  7. PMBasic.BAS.  A menu
  8. |               containing nested submenus is created to
  9. allow the user to
  10. |               select the number of points to be used in
  11. the figure in
  12. |               PMBasic.BAS.
  13. |
  14. | NOTE: Because the "Exit" item has the MIS_SYSCOMMAND,
  15. there is no
  16. |       command message to be processed in PMBasic.BAS.
  17. This item will
  18. |       automatically close the window.
  19. +-----------------------------------------------------------
  20. ------------*/
  21. #include <os2.h>
  22. MENU 1
  23.  {
  24.  SUBMENU  "~PM Basic Demo", 1
  25.   {
  26.   SUBMENU "~Points", 2
  27.   {
  28.    MENUITEM "~10", 10
  29.    MENUITEM "~20", 20
  30.    MENUITEM "~30", 30
  31.    MENUITEM "~40", 40
  32.    MENUITEM "~50", 50
  33.    MENUITEM "~60", 60
  34.    MENUITEM "~70", 70
  35.    MENUITEM "~80", 80
  36.    MENUITEM "~90", 90
  37.   }
  38.   MENUITEM SEPARATOR
  39.   MENUITEM "E~xit", SC_CLOSE, MIS_SYSCOMMAND
  40.   }
  41.  }
  42.  
  43.  
  44.