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

  1. /******************************************************************************
  2. * .FILE:         aclient.rc                                                   *
  3. *                                                                             *
  4. * .DESCRIPTION:  Dynamic Data Exchange Client Program: Resources              *
  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 "aclient.h"
  23.  
  24. ICON WND_CLIENT aclient.ico
  25.  
  26. STRINGTABLE
  27.   BEGIN
  28.     WND_CLIENT,         "DDE Client Sample"
  29.     STR_HOTYES,         "Hot Links Active"
  30.     STR_HOTNO,          "Hot Links Not Active"
  31.     MI_CONV_OPTIONS,    "Conversation Menu"
  32.     MI_START_CONV,      "Start Conversation"
  33.     MI_END_CONV,        "End Conversation"
  34.     MI_DATA_OPTIONS,    "Data Menu"
  35.     MI_REQUEST_DATA,    "Request New Work Item (RequestData)"
  36.     MI_POKE_DATA,       "Work Item Completed (PokeData)"
  37.     MI_HOTLINK_OPTIONS, "Hot Link Menu"
  38.     MI_BEGIN_HOTLINK,   "Begin Hot Links for Status Line"
  39.     MI_END_HOTLINK,     "End Hot Links for Status Line"
  40.     MI_BEGIN_SENT,      "<<begin: sent to Server "
  41.     MI_APP,             "DDE Sample App"
  42.     MI_TOPIC,           "Work Topic"
  43.     MI_END_HOT_SENT,    "<<endHotLinks sent to Server "
  44.     MI_END_SENT,        "<<end sent to Server "
  45.     MI_REQDATA_SENT,    "<<requestData: NextTodo sent to Server "
  46.     MI_NEXTTODO,        "NextToDo"
  47.     MI_BEGIN_HOTLINK_HOTTODO_SENT, "<<beginHotLink: HotTodo sent to Server "
  48.     MI_HOTTODO,         "HotTodo"
  49.     MI_BEGIN_HOTLINK_HOTWORK_SENT, "<<beginHotLink: HotWork sent to Server "
  50.     MI_HOTWORK,         "HotWork"
  51.     MI_BEGIN_HOTLINK_HOTDONE_SENT, "<<beginHotLink: HotDone sent to Server "
  52.     MI_HOTDONE,         "HotDone"
  53.     MI_POKEDATA_SENT,   "<<pokeData: DonePoke sent to Server "
  54.     MI_DONEPOKE,        "DonePoke"
  55.     MI_TODO_COUNT,      "Todo count: "
  56.     MI_WORK_COUNT,      "Work count: "
  57.     MI_DONE_COUNT,      "Done count: "
  58.     MI_DATA_HOTLINK,    ">>data hotlink("
  59.     MI_RECEIVED,        " received from Server "
  60.     MI_DATA,            ">>data("
  61.     MI_TOPIC_END,       ">>conversationEnded: for topic: "
  62.     MI_IN_APP,          " in application: "
  63.     MI_BY_SERVER,       " by Server "
  64.     MI_BY_CLIENT,       " by Client "
  65.     MI_BY_ERROR,        " by error "
  66.     MI_ACK_RECEIVED,    ">>acknowledged: received from Server "
  67.   END
  68.  
  69. /*****************************/
  70. /* menu                      */
  71. /*****************************/
  72. MENU WND_CLIENT
  73.   BEGIN
  74.     SUBMENU "Conversation",             MI_CONV_OPTIONS
  75.       BEGIN
  76.         MENUITEM "Start",               MI_START_CONV
  77.         MENUITEM "End",                 MI_END_CONV
  78.       END
  79.     SUBMENU "Data",                     MI_DATA_OPTIONS
  80.       BEGIN
  81.         MENUITEM "Request Next Todo",   MI_REQUEST_DATA
  82.         MENUITEM "Work Item Done",      MI_POKE_DATA
  83.       END
  84.     SUBMENU "HotLink",                  MI_HOTLINK_OPTIONS
  85.       BEGIN
  86.         MENUITEM "Begin",               MI_BEGIN_HOTLINK
  87.         MENUITEM "End",                 MI_END_HOTLINK
  88.       END
  89.   END
  90.