home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / samples / ioc / hello3 / ahellow3.rc < prev    next >
Encoding:
Text File  |  1996-02-22  |  1.3 KB  |  35 lines

  1. //********************************************************************
  2. // This file was produced using Visual Age C++ IRCC
  3. //
  4. //
  5. //
  6. //  This file was read from ahellow3.rcx  (OS/2 .rc file)  and converted to 
  7. //    Windows .rc file.
  8. //********************************************************************
  9. #include "ahellow3.h"
  10. WND_MAIN          ICON       ahellow3.ico
  11.  
  12. STRINGTABLE
  13.   BEGIN
  14.     STR_HELLO                     ,    "Hello, World!!!"
  15.     WND_MAIN                      ,    "Hello World Sample - Version 3"
  16.     STR_INFO                      ,    "Use Alt-F4 to Close Window"
  17.     MI_ALIGNMENT                  ,    "Alignment Menu"
  18.     MI_CENTER                     ,    "Set Center Alignment"
  19.     MI_LEFT                       ,    "Set Left Alignment"
  20.     MI_RIGHT                      ,    "Set Right Alignment"
  21.     STR_CENTER                    ,    "Center Alignment"
  22.     STR_LEFT                      ,    "Left Alignment"
  23.     STR_RIGHT                     ,    "Right Alignment"
  24.   END
  25.  
  26. WND_MAIN  MENUEX  
  27.   BEGIN
  28.     POPUP     "&Alignment"               ,  MI_ALIGNMENT
  29.       BEGIN
  30.         MENUITEM  "&Left"                    ,  MI_LEFT
  31.         MENUITEM  "&Center"                  ,  MI_CENTER
  32.         MENUITEM  "&Right"                   ,  MI_RIGHT
  33.       END
  34.   END
  35.