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

  1. /*****************************************************************************/
  2. /*                                                                           */
  3. /* File Name:    LOADKBD.RC                                                  */
  4. /*                                                                           */
  5. /* Description:  Resource file for the Keyboard API test 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 "loadkbd.h"
  23.  
  24. ICON ID_WINDOW PRELOAD LOADKBD.ICO
  25.  
  26. MENU ID_WINDOW PRELOAD
  27. BEGIN
  28.    SUBMENU "~Dialog", IDM_START, MIS_TEXT
  29.    BEGIN
  30.       MENUITEM "~Start", IDM_START_DLG, MIS_TEXT
  31.       MENUITEM "E~xit", IDM_EXIT_DLG, MIS_TEXT
  32.    END
  33.    MENUITEM "~Help", IDM_HELP, MIS_TEXT
  34. END
  35.  
  36. HELPTABLE  LOADKBD_HELPTABLE
  37. {
  38.   HELPITEM ID_WINDOW,             LOADKBD_HELPSUBTABLE,     PANEL_LOADKBD
  39.   HELPITEM IDD_OK,                BTN_OK_HELPSUBTABLE,      PANEL_BTN_OK
  40.   HELPITEM IDD_NAME,              EN_NAME_HELPSUBTABLE,     PANEL_EN_NAME
  41.   HELPITEM IDD_PHONE_NO           EN_PHNO_HELPSUBTABLE,     PANEL_EN_PHNO
  42. }
  43.  
  44. HELPSUBTABLE LOADKBD_HELPSUBTABLE
  45. BEGIN
  46.   HELPSUBITEM IDM_HELP,           PANEL_LOADKBD
  47. END
  48.  
  49. HELPSUBTABLE BTN_OK_HELPSUBTABLE
  50. BEGIN
  51.   HELPSUBITEM IDD_OK,             PANEL_BTN_OK
  52. END
  53.  
  54. HELPSUBTABLE EN_NAME_HELPSUBTABLE
  55. BEGIN
  56.   HELPSUBITEM IDD_NAME,           PANEL_EN_NAME
  57. END
  58.  
  59. HELPSUBTABLE EN_PHNO_HELPSUBTABLE
  60. BEGIN
  61.   HELPSUBITEM IDD_PHONE_NO,       PANEL_EN_PHNO
  62. END
  63.  
  64. STRINGTABLE PRELOAD
  65. BEGIN
  66.    IDS_APPNAME,          "LOADKBD"
  67.    IDS_FIELD_1_SEZ,      "Your name is "
  68.    IDS_FIELD_2_SEZ,      "Your phone number is "
  69.    IDS_NO_KBD_LOAD       "Cannot load Pop-Up Keyboard. RC = %s"
  70.    IDS_NO_HELP           "No HELP available for this application."
  71.    IDS_PEN_NOT_INSTALLED "Pen for OS/2 is not installed on this system."
  72.    IDS_PEN_NOT_RUNNING   "Pen for OS/2 is not running on this system."
  73. END
  74.  
  75. rcinclude LOADKBD.DLG
  76.