home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ICLUI.ZIP / HELLO2 / AHELLOW2.RC < prev    next >
Text File  |  1993-02-21  |  2KB  |  34 lines

  1. /******************************************************************************/
  2. /* HELLO WORLD SAMPLE PROGRAM - Version 2: Resource Definitions (AHELLOW2.RC) */
  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 "ahellow2.h"                           //Symbolic definitions        v2
  17.  
  18. //**************************************************************************  v2
  19. // Icon and bit-map resources                                              *   .
  20. //  Symbolic Name (ID) <-> Icon File Name                                  *   .
  21. //**************************************************************************   .
  22. ICON WND_MAIN ahellow2.ico                      //Title bar icon (use same ID)v2
  23.  
  24. //**************************************************************************  v2
  25. // string resources - Used by the IStaticText and ITitle classes           *   .
  26. //  Symbolic Name (ID) <-> Text String                                     *   .
  27. //**************************************************************************  v2
  28. STRINGTABLE
  29.   BEGIN
  30.     STR_HELLO,  "Hello, World!!"                //Hello World text string     v2
  31.     WND_MAIN,   "C++ Hello World - Version 2"   //Title bar text (main ID)    v2
  32.     STR_INFO,   "Use Alt-F4 to close window"    //Information area text       v2
  33.   END
  34.