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

  1. /******************************************************************************
  2. * .FILE:         notify.rc                                                    *
  3. *                                                                             *
  4. * .DESCRIPTION:  Notify Sample Application: Resource file                     *
  5. *                                                                             *
  6. * .CLASSES:                                                                   *
  7. *                                                                             *
  8. * .COPYRIGHT:                                                                 *
  9. *    Licensed Material - Program-Property of IBM                              *
  10. *    (C) Copyright IBM Corp. 1992, 1996 - All Rights Reserved                 *
  11. *                                                                             *
  12. * .DISCLAIMER:                                                                *
  13. *   The following [enclosed] code is sample code created by IBM               *
  14. *   Corporation.  This sample code is not part of any standard IBM product    *
  15. *   and is provided to you solely for the purpose of assisting you in the     *
  16. *   development of your applications.  The code is provided 'AS IS',          *
  17. *   without warranty of any kind.  IBM shall not be liable for any damages    *
  18. *   arising out of your use of the sample code, even if they have been        *
  19. *   advised of the possibility of such damages.                               *
  20. *                                                                             *
  21. * .NOTE: WE RECOMMEND USING A FIXED SPACE FONT TO LOOK AT THE SOURCE          *
  22. *                                                                             *
  23. ******************************************************************************/
  24. #include "notify.h"
  25.  
  26. ICON WND_MAIN notify.ico
  27.  
  28. MENU MAIN_MENU
  29.   BEGIN
  30.     SUBMENU "Options", MI_MENU
  31.       BEGIN
  32.         MENUITEM "Enable the entryfield",   MI_ENABLEEF
  33.         MENUITEM "Disable the entryfield",   MI_DISABLEEF
  34.         MENUITEM "Show contents of Customer",   MI_SHOW
  35.       END
  36.   END
  37.  
  38. STRINGTABLE
  39.   BEGIN
  40.         TITLE_NOTIF_INF   , "Notification information"
  41.         STR_ILLEGAL_CHARS , "Illegal characters entered.  Only alphabetic chars allowed"
  42.         WND_MAIN          , "Notify Sample"
  43.         STR_ALPHA_ONLY    , "alphabetic data only"
  44.         STR_ENTER         , "Enter"
  45.   END
  46.  
  47.