home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / source / MULTIMEN / MULTIMEN.MNU < prev    next >
Text File  |  1998-02-12  |  483b  |  26 lines

  1. #include multimen.inc
  2.  
  3. id_Menu MENU 
  4. BEGIN
  5.   POPUP "&File"
  6.   BEGIN
  7.     MENUITEM "E&xit", cm_FileExit
  8.   END
  9.   POPUP "&Edit"
  10.   BEGIN
  11.     MENUITEM "&Undo", 201
  12.     MENUITEM "&Redo", 202
  13.     POPUP "&Search"
  14.     BEGIN
  15.       MENUITEM "&Ignore case", 301, CHECKED
  16.       POPUP "&Find"
  17.       BEGIN
  18.         MENUITEM "&Previous", 401
  19.         MENUITEM "&Whole words", 402
  20.         MENUITEM "&Partial words", 403
  21.       END
  22.       MENUITEM "&Replace", 303
  23.     END
  24.   END
  25. END
  26.