home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / samples / ioc / mcelcv / amcelcv.rcx < prev    next >
Encoding:
Text File  |  1996-02-22  |  2.8 KB  |  50 lines

  1. /******************************************************************************
  2. * .FILE:         amcelcv.rc                                                   *
  3. *                                                                             *
  4. * .DESCRIPTION:  Canvas Classes Example 3 - Multi Cell Canvas : Resource file *
  5. *                                                                             *
  6. * .COPYRIGHT:                                                                 *
  7. *    Licensed Material - Program-Property of IBM                              *
  8. *    (C) Copyright IBM Corp. 1992, 1996 - All Rights Reserved                 *
  9. *                                                                             *
  10. * .DISCLAIMER:                                                                *
  11. *   The following [enclosed] code is sample code created by IBM               *
  12. *   Corporation.  This sample code is not part of any standard IBM product    *
  13. *   and is provided to you solely for the purpose of assisting you in the     *
  14. *   development of your applications.  The code is provided 'AS IS',          *
  15. *   without 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. * .NOTE: WE RECOMMEND USING A FIXED SPACE FONT TO LOOK AT THE SOURCE          *
  20. *                                                                             *
  21. ******************************************************************************/
  22. #include "amcelcv.h"
  23.  
  24. ICON WND_MAIN "amcelcv.ico"
  25.  
  26. //**************************************************************************
  27. // string resources - used by IStaticText & ITitle Classes                 *
  28. //  Symbolic Name (ID) <-> Text String                                     *
  29. //**************************************************************************
  30. STRINGTABLE
  31.   BEGIN
  32.     WND_MAIN        ,  "Multi Cell Canvas Sample"
  33.     STR_STATUS      ,  "IMultiCellCanvas Sample"
  34.     STR_TITLE1      ,  "Check Boxes"
  35.     STR_TITLE2      ,  "Radio Buttons"
  36.     STR_CHECK1      ,  "check box one"
  37.     STR_CHECK2      ,  "check box two"
  38.     STR_RADIO1      ,  "radio button one"
  39.     STR_RADIO2      ,  "radio button two"
  40.     STR_PUSHBUT     ,  "Read..."
  41.     STR_PUSHED      ,  "You have pressed the push button!"
  42.     STR_MSGBOX      ,  "Current Button State"
  43.     STR_CHK1_SEL    ,  "check box one selected, "
  44.     STR_CHK1_NOSEL  ,  "check box one not selected, "
  45.     STR_CHK2_SEL    ,  "check box two selected, "
  46.     STR_CHK2_NOSEL  ,  "check box two not selected, "
  47.     STR_RAD1_SEL    ,  "and radio button one selected"
  48.     STR_RAD2_SEL    ,  "and radio button two selected"
  49.   END
  50.