home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / samples / ioc / mle / amle.rc < prev    next >
Encoding:
Text File  |  1996-02-22  |  2.3 KB  |  57 lines

  1. //********************************************************************
  2. // This file was produced using Visual Age C++ IRCC
  3. //
  4. //
  5. //
  6. //  This file was read from amle.rcx  (OS/2 .rc file)  and converted to 
  7. //    Windows .rc file.
  8. //********************************************************************
  9. #include "amle.h"
  10. WND_MAIN          ICON       "amle.ico"
  11.  
  12. STRINGTABLE
  13.   BEGIN
  14.     WND_MAIN                      ,    "Multi-Line Entry Field Sample"
  15.     MI_FILE                       ,    "file menu choice"
  16.     MI_OPEN                       ,    "open a file on main thread"
  17.     MI_OPEN_THREAD2               ,    "open a file on second thread"
  18.     MI_SAVE                       ,    "save file"
  19.     MI_SAVEAS                     ,    "save file as"
  20.     MI_EDIT                       ,    "edit menu choice"
  21.     MI_COPY                       ,    "copy marked text to clipboard"
  22.     MI_CUT                        ,    "cut marked text to clipboard"
  23.     MI_PASTE                      ,    "paste text from clipboard"
  24.     MI_OPTIONS                    ,    "options menu choice (font and word wrap)"
  25.     MI_FONT                       ,    "select font"
  26.     MI_WORDWRAP                   ,    "toggle word wrap"
  27.     STR_VIEWNAME                  ,    "Text view"
  28.     STR_FONTDLGT                  ,    "Open Font Dialog"
  29.     STR_OPENFAILED                ,    "Unable to open file"
  30.     STR_OPENFAILEDTEXT            ,    "The application was unable to load the file "
  31.     STR_QUOTE                     ,    "'"
  32.   END
  33.  
  34. WND_MAIN  MENUEX  
  35.   BEGIN
  36.     POPUP     "&File"                    ,  MI_FILE
  37.       BEGIN
  38.         MENUITEM  "&Open..."                 ,  MI_OPEN
  39.         MENUITEM  "Open on &thread..."       ,  MI_OPEN_THREAD2
  40.         MENUITEM  SEPARATOR
  41.         MENUITEM  "&Save..."                 ,  MI_SAVE
  42.         MENUITEM  "Save &as..."              ,  MI_SAVEAS
  43.       END
  44.     POPUP     "&Edit"                    ,  MI_EDIT
  45.       BEGIN
  46.         MENUITEM  "Cu&t\tShift+Delete"       ,  MI_CUT
  47.         MENUITEM  "&Copy\tCtrl+Insert"       ,  MI_COPY
  48.         MENUITEM  "&Paste\tShift+Insert"       ,  MI_PASTE
  49.       END
  50.     POPUP     "&Options"                 ,  MI_OPTIONS
  51.       BEGIN
  52.         MENUITEM  "&Font..."                 ,  MI_FONT
  53.         MENUITEM  SEPARATOR
  54.         MENUITEM  "Word wrap"                ,  MI_WORDWRAP
  55.       END
  56.   END
  57.