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

  1. /*+--------------------------------------------------------------------------+*/
  2. /*|                                                                          |*/
  3. /*| PMLINES - A Simple OS/2 Presentation Manager Graphics Demo               |*/
  4. /*|                                                                          |*/
  5. /*| PMLINES.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 Corporation.|*/
  14. /*|  This sample code is not part of any standard IBM product and is provided|*/
  15. /*|  to you solely for the purpose of assisting you in the development of    |*/
  16. /*|  your applications.  The code is provided "AS IS", without warranty of   |*/
  17. /*|  any kind.  IBM shall not be liable for any damages arising out of your  |*/
  18. /*|  use of the sample code, even if they have been advised of the           |*/
  19. /*|  possibility of such damages.                                            |*/
  20. /*|                                                                          |*/
  21. /*| REVISION LEVEL: 1.0                                                      |*/
  22. /*| ---------------                                                          |*/
  23. /*|                                                                          |*/
  24. /*+--------------------------------------------------------------------------+*/
  25.  
  26. #include <os2.h>
  27. #include "pmlines.h"
  28.  
  29. ICON ID_WINDOW PRELOAD pmlines.ico
  30.  
  31. MENU ID_WINDOW PRELOAD
  32.    {
  33.    SUBMENU "E~xit", IDM_EXIT, MIS_TEXT
  34.       {
  35.       MENUITEM "E~xit PMLINES\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 "~Product Information", 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,      "PMLINES"
  55.    IDS_NOREGISTER,   "Window class could not be registered."
  56.    IDS_NOSTDWINDOWS, "The standard windows could not be created."
  57.    IDS_NOTHREAD,     "The drawing thread could not be created."
  58.    IDS_SEMERROR,     "A semaphore error occurred."
  59.    }
  60.  
  61. rcinclude pmlines.dlg
  62.