home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / mnth0108.zip / Bell / quotes.rc < prev   
Text File  |  1993-06-16  |  1KB  |  48 lines

  1. /* quotes.rc */
  2.  
  3. #include "quotes.h"
  4.  
  5. MENU ID_QUOTES PRELOAD
  6. BEGIN
  7.     SUBMENU "~File", IDM_FILE
  8.     BEGIN
  9.     MENUITEM "~New" , IDM_NEW
  10.     MENUITEM "~Open...", IDM_OPEN
  11.     MENUITEM SEPARATOR
  12.     MENUITEM "E~xit", IDM_EXIT
  13.     END
  14.     SUBMENU "~Options", IDM_OPTIONS
  15.     BEGIN
  16.     SUBMENU "~Text", IDM_TEXT
  17.     BEGIN
  18.         MENUITEM "~Twain", IDM_TWAIN
  19.         MENUITEM "~Ibsen", IDM_IBSEN
  20.         MENUITEM "~Gates", IDM_GATES
  21.     END
  22.     SUBMENU "~Color", IDM_COLOR
  23.     BEGIN
  24.         SUBMENU "~Foreground", IDM_FOREGROUND
  25.         BEGIN
  26.         MENUITEM "~Red", IDMF_RED
  27.         MENUITEM "~Green", IDMF_GREEN
  28.         MENUITEM "~Blue", IDMF_BLUE
  29.         END
  30.         SUBMENU "~Background", IDM_BACKGROUND
  31.         BEGIN
  32.         MENUITEM "~Red", IDMB_RED
  33.         MENUITEM "~Green", IDMB_GREEN
  34.         MENUITEM "~Blue", IDMB_BLUE
  35.         END
  36.     END
  37.     END
  38. END
  39.  
  40. STRINGTABLE
  41. BEGIN
  42.     IDS_TWAIN    "Thunder is good, thunder is impressive; but it is lightning that does the work."
  43.     IDS_IBSEN    "I hold that man is in the right who is most closely in league with the future."
  44.     IDS_GATES    "After mid-1990, we will ship PM applications at the same time or before Windows versions."
  45. END
  46.  
  47. ICON ID_QUOTES "quotes.ico"
  48.