home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pentlk11.zip / MOVEKBD.RC < prev    next >
Text File  |  1994-01-13  |  4KB  |  91 lines

  1. /*****************************************************************************/
  2. /*                                                                           */
  3. /* File Name:    MOVEKBD.RC                                                  */
  4. /*                                                                           */
  5. /* Description:  Resource file for the MOVEKBD Sample program.               */
  6. /*                                                                           */
  7. /*                                                                           */
  8. /*  Copyright (C) 1993 IBM Corporation                                       */
  9. /*                                                                           */
  10. /*      DISCLAIMER OF WARRANTIES.  The following [enclosed] code is          */
  11. /*      sample code created by IBM Corporation. This sample code is not      */
  12. /*      part of any standard or IBM product and is provided to you solely    */
  13. /*      for  the purpose of assisting you in the development of your         */
  14. /*      applications.  The code is provided "AS IS", without                 */
  15. /*      warranty of any kind.  IBM shall not be liable for any damages       */
  16. /*      arising out of your use of the sample code, even if they have been   */
  17. /*      advised of the possibility of such damages.                          */
  18. /*                                                                           */
  19. /*****************************************************************************/
  20. #define INCL_PM
  21. #include <os2.h>
  22. #include "movekbd.h"
  23.  
  24. ICON ID_WINDOW PRELOAD MOVEKBD.ICO
  25.  
  26. MENU ID_WINDOW PRELOAD
  27. BEGIN
  28.    SUBMENU "~Demo", IDM_OPTIONS, MIS_TEXT
  29.    BEGIN
  30.       MENUITEM "~Start Demo", IDM_DEMO, MIS_TEXT
  31.       MENUITEM "E~xit Demo", IDM_EXIT_DEMO, MIS_TEXT
  32.    END
  33.    MENUITEM "~Help", IDM_HELP, MIS_TEXT
  34. END
  35.  
  36. HELPTABLE  MOVEKBD_HELPTABLE
  37. {
  38.   HELPITEM ID_WINDOW,             MOVEKBD_HELPSUBTABLE,     PANEL_MOVEKBD
  39.   HELPITEM IDD_LOAD,              BTNLOAD_HELPSUBTABLE,     PANEL_BTNLOAD
  40.   HELPITEM IDD_MOVE,              BTNMOVE_HELPSUBTABLE,     PANEL_BTNMOVE
  41.   HELPITEM IDD_ENLARGE,           BTNLARG_HELPSUBTABLE,     PANEL_BTNLARG
  42.   HELPITEM IDD_SHRINK,            BTNSHNK_HELPSUBTABLE,     PANEL_BTNSHNK
  43.   HELPITEM IDD_CLOSE,             BTNCLOSE_HELPSUBTABLE,    PANEL_BTNCLOSE
  44. }
  45.  
  46. HELPSUBTABLE MOVEKBD_HELPSUBTABLE
  47. BEGIN
  48.   HELPSUBITEM IDM_HELP,           PANEL_MOVEKBD
  49. END
  50.  
  51. HELPSUBTABLE BTNLOAD_HELPSUBTABLE
  52. BEGIN
  53.   HELPSUBITEM IDD_LOAD,           PANEL_BTNLOAD
  54. END
  55.  
  56. HELPSUBTABLE BTNMOVE_HELPSUBTABLE
  57. BEGIN
  58.   HELPSUBITEM IDD_MOVE,           PANEL_BTNMOVE
  59. END
  60.  
  61. HELPSUBTABLE BTNLARG_HELPSUBTABLE
  62. BEGIN
  63.   HELPSUBITEM IDD_ENLARGE,        PANEL_BTNLARG
  64. END
  65.  
  66. HELPSUBTABLE BTNSHNK_HELPSUBTABLE
  67. BEGIN
  68.   HELPSUBITEM IDD_SHRINK,         PANEL_BTNSHNK
  69. END
  70.  
  71. HELPSUBTABLE BTNCLOSE_HELPSUBTABLE
  72. BEGIN
  73.   HELPSUBITEM IDD_CLOSE,           PANEL_BTNCLOSE
  74. END
  75.  
  76. STRINGTABLE PRELOAD
  77. BEGIN
  78.    IDS_APPNAME           "MOVEKBD"
  79.    IDS_NO_KBD_LOAD       "Cannot load Pop-Up Keyboard."
  80.    IDS_NO_SET_KBD_POS    "Cannot set the Pop-Up Keyboard to new position."
  81.    IDS_NO_QUERY_KBD_POS  "Cannot query the Pop-Up Keyboard position."
  82.    IDS_NO_RESIZE_KBD     "Cannot resize the Pop-Up Keyboard."
  83.    IDS_NO_CLOSE_KBD      "Cannot Close the Pop-Up Keyboard."
  84.    IDS_NO_KBD_RUNNING    "The Pop-Up Keyboard is not running."
  85.    IDS_NO_HELP           "No HELP available for this application."
  86.    IDS_PEN_NOT_INSTALLED "Pen for OS/2 is not installed on this system."
  87.    IDS_PEN_NOT_RUNNING   "Pen for OS/2 is not running on this system."
  88. END
  89.  
  90. rcinclude MOVEKBD.DLG
  91.