home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ICLUI.ZIP / MCELCV / AMCELCV.RC < prev    next >
Text File  |  1993-03-09  |  2KB  |  42 lines

  1. /******************************************************************************/
  2. /* Canvas Classes Example 3 - Multi Cell Canvas                               */
  3. /*                                                                            */
  4. /* COPYRIGHT: Copyright (C) International Business Machines Corp., 1992,1993. */
  5. /*                                                                            */
  6. /* DISCLAIMER OF WARRANTIES:                                                  */
  7. /*   The following [enclosed] code is sample code created by IBM              */
  8. /*   Corporation.  This sample code is not part of any standard IBM product   */
  9. /*   and is provided to you solely for the purpose of assisting you in the    */
  10. /*   development of your applications.  The code is provided "AS IS",         */
  11. /*   without warranty of any kind.  IBM shall not be liable for any damages   */
  12. /*   arising out of your use of the sample code, even if they have been       */
  13. /*   advised of the possibility of such damages.                              */
  14. /******************************************************************************/
  15.  
  16. #include "amcelcv.h"                            //Symbolic Definitions
  17.  
  18. //**************************************************************************
  19. // string resources - used by IStaticText & ITitle Classes                 *
  20. //  Symbolic Name (ID) <-> Text String                                     *
  21. //**************************************************************************
  22. STRINGTABLE
  23.   BEGIN
  24.     WND_MAIN        ,  "Canvas Classes Example 3 - Multi Cell Canvas"
  25.     STR_STATUS      ,  "IMultiCellCanvas example"
  26.     STR_TITLE1      ,  "Check Boxes"
  27.     STR_TITLE2      ,  "Radio Buttons"
  28.     STR_CHECK1      ,  "check box one"
  29.     STR_CHECK2      ,  "check box two"
  30.     STR_RADIO1      ,  "radio button one"
  31.     STR_RADIO2      ,  "radio button two"
  32.     STR_PUSHBUT     ,  "Read..."
  33.     STR_PUSHED      ,  "You have pressed the push button!"
  34.     STR_MSGBOX      ,  "Current Button State"
  35.     STR_CHK1_SEL    ,  "check box one selected, "
  36.     STR_CHK1_NOSEL  ,  "check box one not selected, "
  37.     STR_CHK2_SEL    ,  "check box two selected, "
  38.     STR_CHK2_NOSEL  ,  "check box two not selected, "
  39.     STR_RAD1_SEL    ,  "and radio button one selected"
  40.     STR_RAD2_SEL    ,  "and radio button two selected"
  41.   END
  42.