home *** CD-ROM | disk | FTP | other *** search
/ Mega Top 1 / os2_top1.zip / os2_top1 / APPS / PROG / PASCAL / SPEED2 / SAMPLES / PMMDI / PMMDI.RC < prev    next >
Text File  |  1994-07-20  |  608b  |  27 lines

  1.  
  2. CONST
  3.      CM_TILE=100
  4.      CM_CASCADE=101
  5.      CM_CLOSE=102
  6.      CM_CLOSEALL=103
  7.      CM_NEXT=104
  8.      CM_NEWCHILD=500
  9. END
  10.  
  11. ICON 1000 PMMdi.ico
  12. ICON 1001 Child.ico
  13.  
  14. MENU 1000
  15. BEGIN
  16.      SUBMENU "~Windows",1
  17.      BEGIN
  18.           MENUITEM "~New Child",CM_NEWCHILD
  19.           MENUITEM "~Delete Child",CM_CLOSE
  20.           MENUITEM "Delete ~all Childs",CM_CLOSEALL
  21.           MENUITEM SEPARATOR
  22.           MENUITEM "~Tile child windows",CM_TILE
  23.           MENUITEM "~Cascade child windows",CM_CASCADE
  24.           MENUITEM SEPARATOR
  25.           MENUITEM "~Next child window",CM_NEXT
  26.      END
  27. END