home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / CLIPART.PAK / PROMPTS.RC < prev    next >
Encoding:
Text File  |  1997-05-06  |  4.2 KB  |  102 lines

  1. // RC file for all standard AFX menu prompts
  2.  
  3. #define APSTUDIO_READONLY_SYMBOLS
  4. #include "afxres.h"
  5. #undef APSTUDIO_READONLY_SYMBOLS
  6.  
  7. #ifdef APSTUDIO_INVOKED
  8. // This resource will prevent the App Studio user from saving this file
  9. 1 TEXTINCLUDE DISCARDABLE
  10. BEGIN
  11. "Cannot change standard MFC resources.\0"
  12. END
  13. #endif    // APSTUDIO_INVOKED
  14.  
  15. /////////////////////////////////////////////////////////////////////////////
  16.  
  17. // Standard Menu commands
  18. STRINGTABLE
  19. BEGIN
  20.     ID_FILE_NEW,        "Create a new document"
  21.     ID_FILE_OPEN,       "Open an existing document"
  22.     ID_FILE_CLOSE,      "Close the active document"
  23.     ID_FILE_SAVE,       "Save the active document"
  24.     ID_FILE_SAVE_AS,    "Save the active document with a new name"
  25.     ID_FILE_SAVE_COPY_AS, "Save a copy of this document to a file"
  26.     ID_FILE_UPDATE,     "Update the container to show any changes"
  27.     ID_FILE_PAGE_SETUP, "Change the printing options"
  28.     ID_FILE_PRINT_SETUP, "Change the printer and printing options"
  29.     ID_FILE_PRINT,      "Print the active document"
  30.     ID_FILE_PRINT_PREVIEW, "Display full pages"
  31.     ID_APP_ABOUT,       "Display program information, version number and copyright"
  32.     ID_APP_EXIT,        "Quit the application; prompts to save documents"
  33.     ID_FILE_MRU_FILE1,  "Open this document"
  34.     ID_FILE_MRU_FILE2,  "Open this document"
  35.     ID_FILE_MRU_FILE3,  "Open this document"
  36.     ID_FILE_MRU_FILE4,  "Open this document"
  37.     ID_CONTEXT_HELP,    "Display help for clicked on buttons, menus and windows"
  38.     ID_HELP,            "Display help for current task or command"
  39.     ID_HELP_INDEX,      "List Help topics"
  40.     ID_HELP_USING,      "Display instructions about how to use help"
  41.     ID_NEXT_PANE,       "Switch to the next window pane"
  42.     ID_PREV_PANE,       "Switch back to the previous window pane"
  43.     ID_WINDOW_NEW,      "Open another window for the active document"
  44.     ID_WINDOW_ARRANGE,  "Arrange icons at the bottom of the window"
  45.     ID_WINDOW_CASCADE,  "Arrange windows so they overlap"
  46.     ID_WINDOW_TILE_HORZ,"Arrange windows as non-overlapping tiles"
  47.     ID_WINDOW_TILE_VERT,"Arrange windows as non-overlapping tiles"
  48.     ID_WINDOW_SPLIT,    "Split the active window into panes"
  49.     ID_EDIT_CLEAR,      "Erase the selection"
  50.     ID_EDIT_CLEAR_ALL,  "Erase everything"
  51.     ID_EDIT_COPY,       "Copy the selection and put it on the Clipboard"
  52.     ID_EDIT_CUT,        "Cut the selection and put it on the Clipboard"
  53.     ID_EDIT_FIND,       "Find the specified text"
  54.     ID_EDIT_PASTE,      "Insert Clipboard contents"
  55.     ID_EDIT_PASTE_LINK, "Insert Clipboard contents and a link to its source"
  56.     ID_EDIT_PASTE_SPECIAL,"Insert Clipboard contents with options"
  57.     ID_EDIT_REPEAT,     "Repeat the last action"
  58.     ID_EDIT_REPLACE,    "Replace specific text with different text"
  59.     ID_EDIT_SELECT_ALL, "Select the entire document"
  60.     ID_EDIT_UNDO,       "Undo the last action"
  61.     ID_EDIT_REDO,       "Redo the previously undone action"
  62.     ID_VIEW_TOOLBAR,    "Show or hide the toolbar"
  63.     ID_VIEW_STATUS_BAR, "Show or hide the status bar"
  64. END
  65.  
  66.  
  67. // OLE specific
  68. STRINGTABLE
  69. BEGIN
  70.     ID_OLE_EDIT_LINKS,  "Edit linked objects"
  71.     ID_OLE_INSERT_NEW,  "Insert new embedded object"
  72.     ID_OLE_EDIT_CONVERT,"Convert selected object between types"
  73.     ID_OLE_EDIT_CHANGE_ICON, "Change icon of selected object"
  74.     ID_OLE_VERB_FIRST,  "Activate embedded or linked object"
  75. END
  76.  
  77. // Database specific
  78. STRINGTABLE
  79. BEGIN
  80.     ID_RECORD_NEXT  "Move to next record"
  81.     ID_RECORD_PREV  "Move to previous record"
  82.     ID_RECORD_LAST  "Move to final record"
  83.     ID_RECORD_FIRST "Move to first record"
  84. END
  85.  
  86. // System commands
  87. STRINGTABLE
  88. BEGIN
  89.     AFX_IDS_SCSIZE,         "Change the window size"
  90.     AFX_IDS_SCMOVE,         "Change the window position"
  91.     AFX_IDS_SCMINIMIZE,     "Reduce the window to an icon"
  92.     AFX_IDS_SCMAXIMIZE,     "Enlarge the window to full size"
  93.     AFX_IDS_SCNEXTWINDOW,   "Switch to the next document window"
  94.     AFX_IDS_SCPREVWINDOW,   "Switch to the previous document window"
  95.     AFX_IDS_SCCLOSE,        "Close the active window and prompts to save the documents"
  96.     AFX_IDS_SCRESTORE,      "Restore the window to normal size"
  97.     AFX_IDS_SCTASKLIST,     "Activate Task List"
  98.     AFX_IDS_MDICHILD,       "Activate this window"
  99. END
  100.  
  101. /////////////////////////////////////////////////////////////////////////////
  102.