home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v1.zip / IBMCPP / TUTORIAL / DEBUGGER / DPMLINES / DPMLINES.RC < prev    next >
Text File  |  1992-04-01  |  3KB  |  60 lines

  1. /*+--------------------------------------------------------------------------+*/
  2. /*|                                                                          |*/
  3. /*| DPMLINES - A Simple OS/2 Presentation Manager Graphics Demo              |*/
  4. /*|                                                                          |*/
  5. /*| DPMLINES.RC Resource File                                                |*/
  6. /*|                                                                          |*/
  7. /*| COPYRIGHT:                                                               |*/
  8. /*| ----------                                                               |*/
  9. /*|  Copyright (C) International Business Machines Corp., 1991,1992.         |*/
  10. /*|                                                                          |*/
  11. /*| DISCLAIMER OF WARRANTIES:                                                |*/
  12. /*| -------------------------                                                |*/
  13. /*| The following [enclosed] code is sample code created by IBM              |*/
  14. /*| Corporation.  This sample code is not part of any standard IBM product   |*/
  15. /*| and is provided to you solely for the purpose of assisting you in the    |*/
  16. /*| development of your applications.  The code is provided "AS IS",         |*/
  17. /*| without warranty of any kind.  IBM shall not be liable for any damages   |*/
  18. /*| arising out of your use of the sample code, even if they have been       |*/
  19. /*| advised of the possibility of such damages.                              |*/
  20. /*|                                                                          |*/
  21. /*| REVISION LEVEL: 1.0                                                      |*/
  22. /*| ---------------                                                          |*/
  23. /*|                                                                          |*/
  24. /*+--------------------------------------------------------------------------+*/
  25.  
  26. #include <os2.h>
  27. #include "dpmlines.h"
  28.  
  29. ICON ID_WINDOW PRELOAD dpmlines.ico
  30.  
  31. MENU ID_WINDOW PRELOAD
  32.    {
  33.    SUBMENU "E~xit", IDM_EXIT, MIS_TEXT
  34.       {
  35.       MENUITEM "E~xit DPMLINES\tF3", IDM_EXITPROG, MIS_TEXT
  36.       MENUITEM "~Resume", IDM_RESUME, MIS_TEXT
  37.       }
  38.    SUBMENU "~Help", IDM_HELP, MIS_TEXT
  39.       {
  40.       MENUITEM "~Instructions", IDM_HELPINSTRUCTIONS, MIS_TEXT
  41.       MENUITEM SEPARATOR
  42.       MENUITEM "~About...", IDM_HELPABOUT, MIS_TEXT
  43.       }
  44.    }
  45.  
  46. ACCELTABLE ID_WINDOW PRELOAD
  47.    {
  48.    VK_F1, IDM_HELPINSTRUCTIONS, VIRTUALKEY
  49.    VK_F3, IDM_EXITPROG, VIRTUALKEY
  50.    }
  51.  
  52. STRINGTABLE PRELOAD
  53.    {
  54.    IDS_APPNAME,      "DPMLINES"
  55.    IDS_NOREGISTER,   "Window class could not be registered."
  56.    IDS_NOSTDWINDOWS, "The standard windows could not be created."
  57.    }
  58.  
  59. rcinclude dpmlines.dlg
  60.